libc: Start implementing inttypes.h
This commit is contained in:
parent
6507146c60
commit
9aa96de61d
21
libs/libc/include/inttypes.h
Normal file
21
libs/libc/include/inttypes.h
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#ifndef _INTTYPES_H
|
||||||
|
#define _INTTYPES_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#define PRId8 "%d"
|
||||||
|
#define PRId16 "%d"
|
||||||
|
#define PRId32 "%d"
|
||||||
|
#define PRId64 "%ld"
|
||||||
|
#define PRIdLEAST8 "%d"
|
||||||
|
#define PRIdLEAST16 "%d"
|
||||||
|
#define PRIdLEAST32 "%d"
|
||||||
|
#define PRIdLEAST64 "%ld"
|
||||||
|
#define PRIdFAST8 "%d"
|
||||||
|
#define PRIdFAST16 "%d"
|
||||||
|
#define PRIdFAST32 "%d"
|
||||||
|
#define PRIdFAST64 "%ld"
|
||||||
|
#define PRIdMAX "%ld"
|
||||||
|
#define PRIdPTR "%ld"
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user