From 0bca634f7e70b05239f46f3bd40bb37468d67957 Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Sun, 24 Oct 2021 18:47:28 +0200 Subject: Fixing keyboard, changes to Makefile and string.h, trying to add heap... --- src/string.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/string.h') diff --git a/src/string.h b/src/string.h index 8aabeff..500f545 100644 --- a/src/string.h +++ b/src/string.h @@ -1,15 +1,15 @@ #ifndef STRING_H #define STRING_H -#include -#include -#include +#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(char *str,uint32_t num); -uint32_t stoi(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 -- cgit v1.2.3