1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 21:35:53 +02:00
libcproject/lib/types.h

11 lines
139 B
C
Raw Normal View History

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