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
refactor: add user space printf.
[lunaix-os.git]
/
lunaix-os
/
includes
/
klibc
/
string.h
diff --git
a/lunaix-os/includes/klibc/string.h
b/lunaix-os/includes/klibc/string.h
index 8337ef188278663813ec1b4dcdd04d1281906256..fcb0df5286167ebf9a43586efe30da7fa13f6b43 100644
(file)
--- a/
lunaix-os/includes/klibc/string.h
+++ b/
lunaix-os/includes/klibc/string.h
@@
-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 */