-#ifndef _STRING_H
-#define _STRING_H 1
+#ifndef __LUNAIX_STRING_H
+#define __LUNAIX_STRING_H
#include <stddef.h>
size_t
strlen(const char* str);
-#endif
\ No newline at end of file
+char*
+strcpy(char* dest, const char* src);
+
+size_t
+strnlen(const char* str, size_t max_len);
+
+const char*
+strchr(const char* str, int character);
+
+#endif /* __LUNAIX_STRING_H */