implemented basic parsing

This commit is contained in:
Lorenzo Torres 2025-11-30 21:56:39 +01:00
parent 038930d881
commit abf1d7c066
10 changed files with 588 additions and 486 deletions

View file

@ -20,6 +20,9 @@ typedef size_t usize;
typedef float f32;
typedef double f64;
u64 parse_int(char *s, usize len);
f64 parse_float(char *s, usize len);
typedef struct {
usize capacity;
usize position;