Macros for format references to size_t

This commit is contained in:
dekadenZ 2014-04-25 03:20:56 +02:00
parent e61eae499c
commit 27e25cfb08

View file

@ -0,0 +1,13 @@
#pragma once
#ifdef _MSV_VER
#define PRIuSIZE "Iu"
#define PRIxSIZE "Ix"
#else // ifdef _MSV_VER
#define PRIuSIZE "zu"
#define PRIxSIZE "zx"
#endif // ifdef _MSV_VER