does not work

This commit is contained in:
Maix0 2026-04-18 00:13:52 +02:00
parent 8d79cc7812
commit 508ba6e857
12 changed files with 826 additions and 0 deletions

17
ex02/include/mystd.h Normal file
View file

@ -0,0 +1,17 @@
#ifndef MYSTDINT_H
#define MYSTDINT_H
typedef unsigned int uint16_t;
typedef signed int int16_t;
typedef unsigned char uint8_t;
typedef signed char int8_t;
typedef uint8_t bool;
#define true (1)
#define false (0)
#define NULL ((void*)0)
#endif /* MYSTDINT_H */