From 1395dc42159d52ba36524fabe805897cd20bd01e Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Fri, 15 Oct 2021 22:41:18 +0200 Subject: Adding string.h & printf() --- src/string.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/string.h (limited to 'src/string.h') diff --git a/src/string.h b/src/string.h new file mode 100644 index 0000000..8aabeff --- /dev/null +++ b/src/string.h @@ -0,0 +1,15 @@ +#ifndef STRING_H +#define STRING_H + +#include +#include +#include + +size_t stringlen(char *str); +bool stringcmp(char *str1,char *str2); +void stringcat(char *str1,char *str2); +void stringrev(char *str); +void itos(char *str,uint32_t num); +uint32_t stoi(char *str); + +#endif -- cgit v1.2.3