inttypes.h 197 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _INTTYPES_H
#define _INTTYPES_H

#include <stdint.h>

//Define printf types.
#define PRId64 "I64d"
#define PRIu64 "I64u"
#define PRIx64 "I64x"
#define PRId32 "d"
#define PRIu32 "u"

#endif