mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-13 23:43:13 +01:00
14 lines
191 B
C
14 lines
191 B
C
#ifndef __LIBCPROJECT_TYPES__
|
|
#define __LIBCPROJECT_TYPES__
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef uint8_t byte_t;
|
|
|
|
typedef char* string_t;
|
|
|
|
typedef float float32_t;
|
|
typedef double float64_t;
|
|
|
|
#endif
|