show/hide this revision's text 3 edited tags
show/hide this revision's text 2 use the full format specifier rather than just the length modifier for posterity

On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. On glibc I have the %z option, zd, and on Win32 I can use %IId. Is there an elegant way to handle this?

show/hide this revision's text 1

Cross platform format string for variables of type size_t?

On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. On glibc I have the %z option, and on Win32 I can use %I. Is there an elegant way to handle this?