Files
bannertool/source/types.h

13 lines
188 B
C
Raw Normal View History

#ifndef TYPES_H
#define TYPES_H
2015-01-22 22:06:24 -08:00
#include <stddef.h>
2015-01-22 22:06:24 -08:00
#include <stdint.h>
#include <stdbool.h>
2015-01-22 22:06:24 -08:00
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
#endif