Home | History | Annotate | Download | only in lib

Lines Matching full:strsep

316 extern char *strsep (char **restrict __stringp, char const *restrict __delim);
319 # undef strsep
320 # define strsep(s,d) \
321 (GL_LINK_WARNING ("strsep cannot work correctly on character strings " \
324 strsep (s, d))
327 # undef strsep
328 # define strsep(s,d) \
329 (GL_LINK_WARNING ("strsep is unportable - " \
330 "use gnulib module strsep for portability"), \
331 strsep (s, d))
400 See also strsep(). */