1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-11-09 22:08:40 +01:00
libcproject/lib/types.h

11 lines
115 B
C
Raw Normal View History

2023-06-25 15:07:34 +02:00
#ifndef __TYPES__
#define __TYPES__
#include <stdint.h>
typedef uint8_t byte_t;
typedef char* string_t;
#endif