Home | History | Annotate | Download | only in libutil

Lines Matching defs:string

51 #include <string.h>
58 (void)strlcat(string, prefix, sizeof(string)); \
59 (void)strlcat(string, s, sizeof(string)); \
65 * Convert stat flags to a comma-separated string. If no flags
66 * are set, return the default string.
71 char string[128];
74 string[0] = '\0';
97 return strdup(string);
120 * Take string of arguments and return stat flags. Return 0 on
128 char *string, *p;
136 string = *stringp;
137 while ((p = strsep(&string, "\t ,")) != NULL) {