feat(ex02): done
This commit is contained in:
parent
3b45f18fa0
commit
a777f9ac5e
9 changed files with 510 additions and 1 deletions
15
ex02/include/mystd.h
Normal file
15
ex02/include/mystd.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#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)
|
||||
|
||||
#endif /* MYSTDINT_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue