strchr(3), strchrnul(3), strrchr(3)

This commit is contained in:
2022-10-20 22:19:18 -04:00
parent 60d384a298
commit 87b515fa20
2 changed files with 41 additions and 2 deletions
+5 -2
View File
@@ -1,5 +1,8 @@
#ifndef _STRING_H
# define _STRING_H
size_t strlen(const char *s);
size_t strnlen(const char *s, size_t maxlen);
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 */