diff options
| author | Nakidai <plaza521@inbox.ru> | 2024-07-05 00:04:56 +0300 |
|---|---|---|
| committer | Nakidai <plaza521@inbox.ru> | 2024-07-05 00:04:56 +0300 |
| commit | a9c159f5f7bf3479c3236735960597b4bc36a204 (patch) | |
| tree | f325e249f11a4bb8518f01151114b1239207a33b /include/types.h | |
| download | 3cl-a9c159f5f7bf3479c3236735960597b4bc36a204.tar.gz 3cl-a9c159f5f7bf3479c3236735960597b4bc36a204.zip | |
Add code
Diffstat (limited to 'include/types.h')
| -rw-r--r-- | include/types.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h new file mode 100644 index 0000000..9c92d57 --- /dev/null +++ b/include/types.h @@ -0,0 +1,17 @@ +#ifndef __TYPES_H__ +#define __TYPES_H__ + +#include <stdint.h> + + +typedef char s8; + +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; + +typedef int8_t i8; +typedef int16_t i16; +typedef int32_t i32; + +#endif /* __TYPES_H__ */ |