671fdec08089d0bfa51303a4db6ea057bf55be73
[lunaix-os.git] / lunaix-os / includes / libc / string.h
1 #ifndef __LUNAIX_STRING_H
2 #define __LUNAIX_STRING_H
3
4 #include <stddef.h>
5
6 int
7 memcmp(const void*, const void*, size_t);
8
9 void*
10 memcpy(void* __restrict, const void* __restrict, size_t);
11
12 void*
13 memmove(void*, const void*, size_t);
14
15 void*
16 memset(void*, int, size_t);
17
18 size_t
19 strlen(const char* str);
20
21 char*
22 strcpy(char* dest, const char* src);
23
24 #endif /* __LUNAIX_STRING_H */