summaryrefslogtreecommitdiff
path: root/src/include/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/string.h')
-rw-r--r--src/include/string.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/include/string.h b/src/include/string.h
deleted file mode 100644
index 24ac216..0000000
--- a/src/include/string.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _DEF_STRING_H
-#define _DEF_STRING_H
-
-#include <gc/syscall.h>
-#include <stdlib.h>
-
-void *memcpy(void *dest, const void *src, int count);
-uint8_t *memset(uint8_t *dest, uint8_t val, int count);
-uint16_t *memsetw(uint16_t *dest, uint16_t val, int count);
-
-int strlen(const char *str);
-char *strcpy(char *dest, const char *src);
-char *strdup(const char *src);
-char *strchr(const char *str, char c);
-char *strcat(char *dest, const char *src);
-int strcmp(const char *s1, const char *s2);
-
-#endif