blob: 5397fb3498af48e9c6e0f2f219b62c2c6ce9a3a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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 */
|