21ee45095b
Symbols starting with two underscores are reserved, as per the C standard.
13 lines
No EOL
188 B
C
13 lines
No EOL
188 B
C
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef uint8_t u8;
|
|
typedef uint16_t u16;
|
|
typedef uint32_t u32;
|
|
typedef uint64_t u64;
|
|
|
|
#endif |