diff options
Diffstat (limited to 'src/include/source/string.h')
| -rw-r--r-- | src/include/source/string.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/source/string.h b/src/include/source/string.h new file mode 100644 index 0000000..98aef4f --- /dev/null +++ b/src/include/source/string.h @@ -0,0 +1,17 @@ +#ifndef SOURCE_STRING_H +#define SOURCE_STRING_H + +#include<types.h> + +size_t stringlen(char* str); +bool stringcmp(const char* str1, const char* str2); +void stringcat(char* str1, const char* str2); +void stringcpy(char* str1, const 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 |
