Iros
 
Loading...
Searching...
No Matches
char.h
Go to the documentation of this file.
1#pragma once
2
3namespace di::types {
4using c8 = char8_t;
5using c16 = char16_t;
6using c32 = char32_t;
7}
8
9namespace di {
10using types::c16;
11using types::c32;
12using types::c8;
13}
14
15#if !defined(DI_NO_GLOBALS) && !defined(DI_NO_GLOBAL_TYPES)
16using di::c16;
17using di::c32;
18using di::c8;
19#endif
Definition method.h:5
char8_t c8
Definition char.h:4
char16_t c16
Definition char.h:5
char32_t c32
Definition char.h:6
Definition zstring_parser.h:9