Making: math interpreter. Need to fix printf %f

This commit is contained in:
xamidev
2024-08-06 13:43:01 +02:00
parent f05347f73b
commit fc17e5eade
8 changed files with 393 additions and 53 deletions

9
src/libc/ctype.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef CTYPE_H
#define CTYPE_H
#include "stdint.h"
bool isdigit(char c);
bool isspace(char c);
#endif