9 lines
263 B
C
9 lines
263 B
C
#ifndef _STRING_H
|
|
# define _STRING_H
|
|
char * strchr(const char *s, int c);
|
|
char * strrchr(const char *s, int c);
|
|
char *strchrnul(const char *s, int c);
|
|
size_t strlen(const char *s);
|
|
size_t strnlen(const char *s, size_t maxlen);
|
|
#endif /* ifndef _STRING_H */
|