Lines Matching refs:strsep
1095 // strsep()
1098 char *strsep(char **stringp, const char *delim);
1101 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}}
1105 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}}
1110 strsep(&s, ""); // no-warning
1116 char *result = strsep(&s, ""); // no-warning
1122 strsep(&s, ""); // no-warning
1138 strsep(&s, "b"); // no-warning
1140 // The real strsep will change the first delimiter it finds into a NUL