Parent Directory
|
Revision Log
feat: add plibc to the project
1 | #ifndef PLIBC_FORMAT_H |
2 | #define PLIBC_FORMAT_H |
3 | |
4 | #define PRI_u64 "llu" |
5 | #define PRI_x64 "llx" |
6 | |
7 | #define PRI_u32 "u" |
8 | #define PRI_x32 "x" |
9 | |
10 | #define PRI_u16 "u" |
11 | #define PRI_x16 "x" |
12 | |
13 | #define PRI_u8 "u" |
14 | #define PRI_x8 "x" |
15 | |
16 | #define PRI_PTR "p" |
17 | |
18 | #endif /* PLIBC_FORMAT_H */ |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |