dead simple printf/sprintf implementation.
[lunaix-os.git] / lunaix-os / includes / libc / string.h
index eeade755e200695d7254529fa8bf15a15f0846b7..671fdec08089d0bfa51303a4db6ea057bf55be73 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef _STRING_H
-#define _STRING_H 1
+#ifndef __LUNAIX_STRING_H
+#define __LUNAIX_STRING_H
 
 #include <stddef.h>
 
@@ -18,4 +18,7 @@ memset(void*, int, size_t);
 size_t
 strlen(const char* str);
 
-#endif
\ No newline at end of file
+char*
+strcpy(char* dest, const char* src);
+
+#endif /* __LUNAIX_STRING_H */