Lines Matching refs:string
1277 # Examples for 'func_quote_arg pretty,unquoted string':
1287 # Examples for 'func_quote_arg pretty,unquoted,expand string':
5913 char *xstrdup (const char *string);
6196 xstrdup (const char *string)
6198 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
6199 string) : NULL;
6622 const char *string = argv[i];
6624 if (string[0] == '\0')
6626 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
6628 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
6639 for (s = string; *s != '\0'; s++)