X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/f1036cb8c8899f38e97e45d345a0c28585d9a000..7b0dccbab69e806a63c4504c3ddb82e45241985b:/lunaix-os/includes/libc/string.h 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 */