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

11 lines
115 B
C

#ifndef __TYPES__
#define __TYPES__
#include <stdint.h>
typedef uint8_t byte_t;
typedef char* string_t;
#endif