refactor: add user space printf.
[lunaix-os.git] / lunaix-os / includes / klibc / string.h
index 8337ef188278663813ec1b4dcdd04d1281906256..fcb0df5286167ebf9a43586efe30da7fa13f6b43 100644 (file)
@@ -30,4 +30,13 @@ strncpy(char* dest, const char* src, size_t n);
 const char*
 strchr(const char* str, int character);
 
+int
+streq(const char* a, const char* b);
+
+void
+strrtrim(char* str);
+
+void*
+strltrim_safe(char* str);
+
 #endif /* __LUNAIX_STRING_H */