strlen(3) strnlen(3)

This commit is contained in:
2022-09-18 10:53:17 -04:00
parent fd8f2bee3e
commit 4206d6dee5
2 changed files with 22 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#ifndef _STRING_H
# define _STRING_H
size_t strlen(const char *s);
size_t strnlen(const char *s, size_t maxlen);
#endif /* ifndef _STRING_H */