1 #ifndef __LUNAIX_STRING_H
2 #define __LUNAIX_STRING_H
7 strlen(const char* str);
10 strnlen(const char* str, size_t max_len);
13 strncpy(char* dest, const char* src, size_t n);
16 strchr(const char* str, int character);
18 #endif /* __LUNAIX_STRING_H */