Lines Matching defs:string
26 #include <string.h>
227 "Trying plain input string (better precede with 'pass:')\n");
394 /* Return empty config if filename is empty string. */
1917 "%s: Missing '=' after RDN type string '%s' in %s name string\n",
1926 /* unescaped '+' symbol string signals further member of multiRDN */
1933 "%s: Escape character at end of %s name string\n",
1952 "Hint: a '+' in a value string needs be escaped using '\\' else a new member of a multi-valued RDN is expected\n");
2075 * next_protos_parse parses a comma separated list of strings into a string
2079 * in: a NUL terminated string like "abc,def,ghi"
2099 * strict and reject the entire string, but just ignoring extra
3272 void make_uppercase(char *string)
3276 for (i = 0; string[i] != '\0'; i++)
3277 string[i] = toupper((unsigned char)string[i]);
3313 /* Replace ':' with 0 to terminate the string pointed to by stmp */