X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/84d85ea7b7bba78431600369cf1717166e156cd0..4c6d990440cdba6c7dd294adb7e435770ffcbcc4:/lunaix-os/includes/libc/string.h?ds=sidebyside diff --git a/lunaix-os/includes/libc/string.h b/lunaix-os/includes/libc/string.h index 671fdec..7347de2 100644 --- a/lunaix-os/includes/libc/string.h +++ b/lunaix-os/includes/libc/string.h @@ -21,4 +21,10 @@ strlen(const char* str); char* strcpy(char* dest, const char* src); +size_t +strnlen(const char* str, size_t max_len); + +const char* +strchr(const char* str, int character); + #endif /* __LUNAIX_STRING_H */