Reorganize files and remove unused code

This commit is contained in:
2024-10-10 14:57:27 +02:00
parent ab6bddbafd
commit 479100ec4a
26 changed files with 1901 additions and 4474 deletions
+3 -1
View File
@@ -32,4 +32,6 @@ For more information, please refer to <http://unlicense.org/>
char *load_file(const char *file, size_t *size);
inline bool is_space(char c) { return c == ' ' || c == '\r' || c == '\t' || c == '\n'; }
inline bool is_digit(char c) { return c >= '0' && c <= '9'; }
inline bool is_digit(char c) { return c >= '0' && c <= '9'; }
float random_float(void);