git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
dead simple printf/sprintf implementation.
[lunaix-os.git]
/
lunaix-os
/
includes
/
libc
/
string.h
diff --git
a/lunaix-os/includes/libc/string.h
b/lunaix-os/includes/libc/string.h
index eeade755e200695d7254529fa8bf15a15f0846b7..671fdec08089d0bfa51303a4db6ea057bf55be73 100644
(file)
--- a/
lunaix-os/includes/libc/string.h
+++ b/
lunaix-os/includes/libc/string.h
@@
-1,5
+1,5
@@
-#ifndef _STRING_H
-#define _
STRING_H 1
+#ifndef _
_LUNAIX_
STRING_H
+#define _
_LUNAIX_STRING_H
#include <stddef.h>
#include <stddef.h>
@@
-18,4
+18,7
@@
memset(void*, int, size_t);
size_t
strlen(const char* str);
size_t
strlen(const char* str);
-#endif
\ No newline at end of file
+char*
+strcpy(char* dest, const char* src);
+
+#endif /* __LUNAIX_STRING_H */