Home | History | Annotate | Download | only in Analysis

Lines Matching full:strsep

1033 // strsep()
1036 char *strsep(char **stringp, const char *delim);
1039 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}}
1043 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}}
1048 char *result = strsep(&s, ""); // no-warning
1054 char *result = strsep(&s, ""); // no-warning
1060 strsep(&s, ""); // no-warning
1076 strsep(&s, "b"); // no-warning
1078 // The real strsep will change the first delimiter it finds into a NUL