mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
11 lines
139 B
C
11 lines
139 B
C
#ifndef __LIBCPROJECT_TYPES__
|
|
#define __LIBCPROJECT_TYPES__
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef uint8_t byte_t;
|
|
|
|
typedef char* string_t;
|
|
|
|
#endif
|