Add: semi-working printf implementation

This commit is contained in:
xamidev
2024-05-26 15:43:30 +02:00
parent 61dec7fe14
commit bb775dfa5b
9 changed files with 250 additions and 2 deletions

20
stdint.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef INCLUDE_STDINT_H
#define INCLUDE_STDINT_H
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed long int int32_t;
typedef unsigned long int uint32_t;
typedef signed long long int int64_t;
typedef unsigned long long int uint64_t;
typedef uint8_t bool;
#define true 1
#define false 0
#endif