1 #ifndef __LUNALIBC_STRING_H
2 #define __LUNALIBC_STRING_H
6 extern size_t strlen(const char* str);
8 extern size_t strnlen(const char* str, size_t max_len);
10 extern char* strncpy(char* dest, const char* src, size_t n);
12 extern const char* strchr(const char* str, int character);
14 extern char* strcpy(char* dest, const char* src);
16 extern int strcmp(const char* s1, const char* s2);
18 #endif /* __LUNALIBC_STRING_H */