summaryrefslogtreecommitdiff
path: root/src/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.h')
-rw-r--r--src/string.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/string.h b/src/string.h
deleted file mode 100644
index 500f545..0000000
--- a/src/string.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef STRING_H
-#define STRING_H
-
-#include"types.h"
-
-size_t stringlen(char *str);
-bool stringcmp(char *str1,char *str2);
-void stringcat(char *str1,char *str2);
-void stringrev(char *str);
-void itos(uint32_t num,char *str);
-uint32_t stoi(const char *str);
-double stof(const char *str);
-void ftos(double num, char *str);
-
-#endif