libs/libc/string/lib_strsep.c: Add strsep BSD/Linux function.

This commit is contained in:
Xiang Xiao
2019-03-19 08:25:29 -06:00
committed by Gregory Nutt
parent 41ed2e153a
commit 756c9f4eac
3 changed files with 84 additions and 1 deletions
+1
View File
@@ -83,6 +83,7 @@ size_t strspn(FAR const char *, FAR const char *);
size_t strcspn(FAR const char *, FAR const char *);
FAR char *strstr(FAR const char *, FAR const char *);
FAR char *strcasestr(FAR const char *, FAR const char *);
FAR char *strsep(FAR char **, FAR const char *);
FAR char *strsignal(int signum);
FAR char *strtok(FAR char *, FAR const char *);
FAR char *strtok_r(FAR char *, FAR const char *, FAR char **);