blob: eca16b955da36a996b7691b90214bc09353d67d0 (
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 */
|