Lines Matching refs:string
343 # Normalisation. If bindir is libdir, return empty string,
385 # Sed substitution that turns a string into a regex matching for the
386 # string literally.
533 # func_mktempdir [string]
675 # Turn $1 into a string suitable for a shell variable name.
847 # func_len string
1528 # Cygwin format). Returns an empty string on error.
3882 # windows platforms, and (c) all begin with the string "--lt-"
4152 #include <string.h>
4263 char *xstrdup (const char *string);
4541 xstrdup (const char *string)
4543 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
4544 string) : NULL;
4967 const char *string = argv[i];
4969 if (string[0] == '\0')
4971 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
4973 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
4984 for (s = string; *s != '\0'; s++)
5004 for (s = string; *s != '\0'; s++)
5031 new_argv[i] = (char *) string;