diff options
Diffstat (limited to 'include/_charN_t.h')
-rw-r--r-- | include/_charN_t.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/_charN_t.h b/include/_charN_t.h new file mode 100644 index 0000000..5397fb3 --- /dev/null +++ b/include/_charN_t.h @@ -0,0 +1,10 @@ +#ifndef MLIB__CHARN_T_H +#define MLIB__CHARN_T_H + +#include <stdint.h> + +typedef unsigned char char8_t; +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; + +#endif /* !MLIB__CHARN_T_H */ |