diff options
author | Marvin Borner | 2020-04-15 16:35:29 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-15 16:35:29 +0200 |
commit | aa3d1b4689e6dadd982fe1e5ca8af69ca39c617d (patch) | |
tree | 8d4eff1df3031e601cb50cf005130a591fce35a1 /src/kernel/lib/string.h | |
parent | 10cd931d75a02942c5ad254cef2e56b515122fa3 (diff) |
Added ext2 filesystem
Diffstat (limited to 'src/kernel/lib/string.h')
-rw-r--r-- | src/kernel/lib/string.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kernel/lib/string.h b/src/kernel/lib/string.h index 7375953..3a8dc07 100644 --- a/src/kernel/lib/string.h +++ b/src/kernel/lib/string.h @@ -15,8 +15,14 @@ void strcati(char *dest, const char *orig); char strcmp(const char *a, const char *b); +int strncmp(const char *s1, const char *s2, int c); + char *strdup(const char *orig); void strinv(char *str); +char *strstr(const char *in, const char *str); + +char *strsep(char **stringp, const char *delim); + #endif
\ No newline at end of file |