banger commit

This commit is contained in:
2026-05-05 23:38:00 +03:00
parent 27435f0fc5
commit fc9f7c05b4
4 changed files with 164 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
#ifndef NOOM_TYPES
#define NOOM_TYPES
typedef unsigned long long int noom_uint_t;
typedef signed long long int noom_int_t;
typedef double noom_float_t;
typedef unsigned char noom_bool_t;
typedef void * noom_table_t; // atom figure this shit out
typedef char * noom_string_t;
#endif