fix prototype for strsep
This commit is contained in:
parent
6b87e941f9
commit
1fee6186fe
2 changed files with 2 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ int strcasecmp (const char *, const char *);
|
|||
int strncasecmp (const char *, const char *, size_t);
|
||||
char *strchrnul(const char *, int);
|
||||
char *strcasestr(const char *, const char *);
|
||||
char *strsep(char **, char *);
|
||||
char *strsep(char **, const char *);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <string.h>
|
||||
|
||||
char *strsep(char **str, const char *sep)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue