Work around an incorrect implementation of the 0 flag on most platforms.
[gnulib.git] / doc / functions / vsnprintf.texi
1 @node vsnprintf
2 @section @code{vsnprintf}
3 @findex vsnprintf
4
5 POSIX specification: @url{http://www.opengroup.org/susv3xsh/vsnprintf.html}
6
7 Gnulib module: vsnprintf or vsnprintf-posix
8
9 Portability problems fixed by either Gnulib module @code{vsnprintf} or @code{vsnprintf-posix}:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 OSF/1 4.0, Solaris 2.5.1.
14 @end itemize
15
16 Portability problems fixed by Gnulib module @code{vsnprintf-posix}:
17 @itemize
18 @item
19 This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
20 @code{j}, @code{t}, @code{z}) on some platforms:
21 AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 2006, mingw, BeOS.
22 @item
23 This function does not support the @samp{a} and @samp{A} directives on some
24 platforms:
25 glibc-2.3.6, MacOS X 10.3, NetBSD 3.0, OpenBSD 4.0, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, BeOS.
26 @item
27 This function does not support the @samp{F} directive on some platforms:
28 NetBSD 3.0, AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, BeOS.
29 @item
30 This function does not support format directives that access arguments in an
31 arbitrary order, such as @code{"%2$s"}, on some platforms:
32 NetBSD 3.0, mingw, BeOS.
33 @item
34 This function doesn't support the @code{'} flag on some platforms:
35 NetBSD 3.0, mingw.
36 @item
37 printf @code{"%010f"} of NaN and Infinity yields an incorrect result (padded
38 with zeroes) on some platforms:
39 MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.2, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw.
40 @item
41 This function does not truncate the result as specified in C99 on some platforms:
42 mingw.
43 @item
44 This function does not return a byte count as specified in C99 on some platforms:
45 HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
46 @item
47 This function does not fully support the @samp{n} directive on some platforms:
48 HP-UX 11, mingw.
49 @item
50 This function overwrites memory even when a zero size argument is passed on some
51 platforms:
52 HP-UX 11, OSF/1 5.1.
53 @end itemize
54
55 Portability problems not fixed by Gnulib:
56 @itemize
57 @item
58 printf of @samp{long double} numbers is unsupported on some platforms:
59 mingw.
60 @end itemize