Files
Espresso/include/types.h

16 lines
222 B
C
Raw Permalink Normal View History

2025-05-28 14:41:02 -05:00
#ifndef _TYPES_H
#define _TYPES_H
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
2025-07-03 20:30:21 -05:00
typedef unsigned char uchar;
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
2025-05-28 14:41:02 -05:00
#endif