Lines Matching defs:string
18 #include <string.h>
754 static char *next_string(char *string, unsigned long *secsize)
757 while (string[0]) {
758 string++;
764 while (!string[0]) {
765 string++;
769 return string;
799 * Test if string s ends in string sub
830 * "foo" will match an exact string equal to "foo"
831 * "*foo" will match a string that ends with "foo"
832 * "foo*" will match a string that begins with "foo"
833 * "*foo*" will match a string that contains "foo"