initial commit

This commit is contained in:
Lobo 2026-01-19 09:08:23 -03:00
commit fdd1ee61b5
24 changed files with 5284 additions and 0 deletions

15
common.h Normal file
View file

@ -0,0 +1,15 @@
#ifndef COMMON_H
#define COMMON_H
#include <stdint.h>
#include <stddef.h>
typedef void V;
typedef intptr_t I;
typedef uintptr_t U;
typedef double F;
typedef size_t Z;
typedef uint8_t U8;
typedef uint32_t U32;
#endif