Addeded some hash functions. Fix of visibility resolution for macros. std lib is now loaded from a directory.

This commit is contained in:
Christoffer Lerno
2021-09-22 10:11:04 +02:00
committed by Christoffer Lerno
parent fb9be722bc
commit 0a4f35154a
15 changed files with 425 additions and 193 deletions

View File

@@ -22,6 +22,7 @@ struct LongDivResult
define TerminateFunction = func void();
define CompareFunction = func int(void*, void*);
extern func double atof(char* str);
extern func int atoi(char* str);
extern func long atol(char* str);
extern func double strtod(char* str, char** endptr);
extern func long strtol(char* str, char** endptr, int base);