Merge branch 'master' into prog-loader
[lunaix-os.git] / lunaix-os / usr / includes / string.h
index a3099247c53903992206ddd80200e780cf4082be..2b5799a15fc100ac85b50ce3768d40fc906b6201 100644 (file)
@@ -12,4 +12,10 @@ strnlen(const char* str, size_t max_len);
 char*
 strncpy(char* dest, const char* src, size_t n);
 
+const char*
+strchr(const char* str, int character);
+
+char*
+strcpy(char* dest, const char* src);
+
 #endif /* __LUNAIX_STRING_H */