Cross platform format string for variables of type size_t? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T21:16:07Z http://stackoverflow.com/feeds/question/174612 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet 4 Cross platform format string for variables of type size_t? twk 2008-10-06T14:51:51Z 2009-08-25T03:35:20Z <p>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 %zd, and on Win32 I can use <a href="http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx" rel="nofollow">%Id</a>. Is there an elegant way to handle this?</p> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/174648#174648 1 Answer by Head Geek for Cross platform format string for variables of type size_t? Head Geek 2008-10-06T15:01:35Z 2008-10-06T15:01:35Z <p>I don't know of any satisfying solution, but you might consider a specialized function to format size_t items to a string, and print the string.</p> <p>(Alternatively, if you can get away with it, boost::format handles this kind of thing with ease.)</p> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/174674#174674 1 Answer by ΤΖΩΤΖΙΟΥ for Cross platform format string for variables of type size_t? ΤΖΩΤΖΙΟΥ 2008-10-06T15:07:12Z 2008-10-06T15:07:12Z <p>The only thing I can think of, is the typical:</p> <pre><code>#ifdef __WIN32__ // or whatever #define SSIZET_FMT "%ld" #else #define SSIZET_FMT "%zd" #endif </code></pre> <p>and then taking advantage of constant folding:</p> <pre><code>fprintf(stream, "Your size_t var has value " SSIZET_FMT ".", your_var); </code></pre> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/174708#174708 0 Answer by Steve Fallows for Cross platform format string for variables of type size_t? Steve Fallows 2008-10-06T15:16:35Z 2008-10-06T15:16:35Z <p>Can't you just test "sizeof(size_t)" to pick your format string?</p> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/174716#174716 8 Answer by finnw for Cross platform format string for variables of type size_t? finnw 2008-10-06T15:17:47Z 2008-10-15T16:46:04Z <p>The <code>PRIuPTR</code> macro (from &lt;inttypes.h&gt;) defines a decimal format for <code>uintptr_t</code>, which should always be large enough that you can cast a <code>size_t</code> to it without truncating, e.g.</p> <pre><code>fprintf(stream, "Your size_t var has value %" PRIuPTR ".", (uintptr_t) your_var); </code></pre> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/175361#175361 1 Answer by Frederico for Cross platform format string for variables of type size_t? Frederico 2008-10-06T17:42:36Z 2008-10-06T17:42:36Z <p>Dan Saks wrote an article in Embedded Systems Design which <a href="http://www.embedded.com/columns/programmingpointers/201803576?pgno=2" rel="nofollow">covered</a> this matter. According to Dan, %zu is the standard way, but few compilers supported this. As an alternative, he recommended using %lu together with an explicit cast of the argument to unsigned long:</p> <blockquote> <pre><code>size_t n; ... printf("%lu", (unsigned long)n); </code></pre> </blockquote> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/175794#175794 1 Answer by Lev for Cross platform format string for variables of type size_t? Lev 2008-10-06T19:25:42Z 2008-10-06T19:25:42Z <p>Use <code>boost::format</code>. It's typesafe, so it'll print <code>size_t</code> correctly with <code>%d</code>, also you don't need to remember to put <code>c_str()</code> on <code>std::string</code>s when using it, and even if you pass a number to <code>%s</code> or vice versa, it'll work.</p> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/1324516#1324516 0 Answer by jkl for Cross platform format string for variables of type size_t? jkl 2009-08-24T20:19:26Z 2009-08-24T20:19:26Z <p>There are really two questions here. The first question is what the correct printf specifier string for the three platforms is. Note that <code>size_t</code> is an unsigned type.</p> <p>On Windows, use "<code>%Iu</code>".</p> <p>msdn.microsoft.com/en-us/library/tcxf1dw6(VS.71).aspx</p> <p>On Linux and OSX, use "<code>%zu</code>".</p> <p>linux.die.net/man/3/printf developer.apple.com/documentation/Darwin/Reference/Manpages/man3/printf.3.html</p> <p>The second question is how to support multiple platforms, given that things like format strings might be different on each platform. As other people have pointed out, using <code>#ifdef</code> gets ugly quickly.</p> <p>Instead, write a separate makefile or project file for each target platform. Then refer to the specifier by some macro name in your source files, defining the macro appropriately in each makefile. In particular, both GCC and Visual Studio accept a 'D' switch to define macros on the command line.</p> <p>If your build system is very complicated (multiple build options, generated sources, etc.), maintaining 3 separate makefiles might get unwieldly, and you are going to have to use some kind of advanced build system like CMake or the GNU autotools. But the basic principle is the same-- use the build system to define platform-specific macros instead of putting platform-detection logic in your source files.</p> <p>p.s. Someone please replace the URLs with actual hyperlinks. Apparently 'new users can only post a maximum of one hyperlink'.</p> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/1325913#1325913 0 Answer by youcantmakemeregister for Cross platform format string for variables of type size_t? youcantmakemeregister 2009-08-25T03:29:54Z 2009-08-25T03:35:20Z <p>You just have to find an integer type with the largest storage class, cast the value to it, and then use the appropriate format string for the larger type. Note this solution will work for any type (ptrdiff_t, etc.), not just size_t.</p> <p>What you want to use is uintmax_t and the format macro PRIuMAX. For Visual C++, you are going to need to download c99-compatible stdint.h and inttypes.h headers, because Microsoft doesn't provide them.</p> <p>Also see</p> <p><a href="http://www.embedded.com/columns/technicalinsights/204700432" rel="nofollow">http://www.embedded.com/columns/technicalinsights/204700432</a></p> <p>This article corrects the mistakes in the article quoted by Frederico.</p>