diff options
Diffstat (limited to 'src/kernel/lib/string.h')
-rw-r--r-- | src/kernel/lib/string.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/kernel/lib/string.h b/src/kernel/lib/string.h deleted file mode 100644 index 127dcc4..0000000 --- a/src/kernel/lib/string.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef MELVIX_STRING_H -#define MELVIX_STRING_H - -#include <stddef.h> -#include <stdint.h> - -u32 strlen(const char *str); - -void strcpy(char *dest, const char *orig); - -void strdisp(char *str, int n); - -void strcat(char *dest, const char *orig); - -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 |