implement memrchr (nonstandard) and optimize strrchr in terms of it
This commit is contained in:
parent
750b738e53
commit
6597f9ac13
3 changed files with 16 additions and 4 deletions
|
|
@ -74,6 +74,7 @@ int strncasecmp (const char *, const char *, size_t);
|
|||
char *strchrnul(const char *, int);
|
||||
char *strcasestr(const char *, const char *);
|
||||
char *strsep(char **, const char *);
|
||||
void *memrchr(const void *, int, size_t);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue