7383a0f2d14d6c6710d0eb0f406446b8c646fb84
[lunaix-os.git] / lunaix-os / usr / includes / string.h
1 #ifndef __LUNAIX_STRING_H
2 #define __LUNAIX_STRING_H
3
4 #include <stddef.h>
5
6 size_t
7 strlen(const char* str);
8
9 size_t
10 strnlen(const char* str, size_t max_len);
11
12 char*
13 strncpy(char* dest, const char* src, size_t n);
14
15 const char*
16 strchr(const char* str, int character);
17
18 char*
19 strcpy(char* dest, const char* src);
20
21 int
22 strcmp(const char* s1, const char* s2);
23
24 #endif /* __LUNAIX_STRING_H */