Initial git release
[ZeXOS.git] / include / .svn / text-base / string.h.svn-base
bloba4e2e0dabf495f909d7146d0faac8410503fe636
1 #ifndef __TL_STRING_H\r
2 #define __TL_STRING_H\r
3 \r
4 #ifdef __cplusplus\r
5 extern "C"\r
6 {\r
7 #endif\r
8 \r
9 #include <_size_t.h>\r
10 #include <_null.h>\r
12 void *memcpy(void *dst_ptr, const void *src_ptr, size_t count);\r
13 void *memsetw(void *dst, int val, size_t count);\r
14 void *memset(void *dst, int val, size_t count);\r
15 size_t strlen(const char *str);\r
16 char *strcpy(char *to, const char *from);\r
17 char *strcat(char *s, const char *add);\r
18 void kprintf(const char *fmt, ...);\r
19 #ifdef __cplusplus\r
20 }\r
21 #endif\r
23 #endif\r