1 /* BSD strsep function */
3 /* Copyright 2002, Red Hat Inc. */
5 /* undef STRICT_ANSI so that strsep prototype will be defined */
11 extern char *__strtok_r (char *, const char *, char **, int);
14 strsep (register char **source_ptr
,
15 register const char *delim
)
17 return __strtok_r (*source_ptr
, delim
, source_ptr
, 0);