Added prototype for the GNU strchrnul() call.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3155 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
acd0c5776d
commit
6eb83f74ed
@ -32,6 +32,9 @@ extern char *strchr(const char *string, int character);
|
||||
extern char *strrchr(const char *string, int character);
|
||||
extern char *strstr(const char *string, const char *searchString);
|
||||
|
||||
extern char *strchrnul(const char *string, int character);
|
||||
// this is a GNU extension
|
||||
|
||||
extern char *strpbrk(const char *string, const char *set);
|
||||
extern char *strtok(char *string, const char *set);
|
||||
extern char *strtok_r(char *string, const char *set, char **savePointer);
|
||||
|
Loading…
Reference in New Issue
Block a user