klib: add memchr
This commit is contained in:
parent
fe34be982d
commit
14fd0faefd
2 changed files with 28 additions and 0 deletions
|
@ -24,6 +24,7 @@ char *strcpy(char *dst, const char *src);
|
|||
char *strncpy(char *dst, const char *src, size_t n);
|
||||
int strcmp(const char *s1, const char *s2);
|
||||
int strncmp(const char *s1, const char *s2, size_t n);
|
||||
void *memchr(const void *src, int c, size_t n);
|
||||
|
||||
|
||||
//stdlib.h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue