a8959071d2373eb72c3e534b912df805a98a1829
[gnulib.git] / doc / posix-functions / vsprintf.texi
1 @node vsprintf
2 @section @code{vsprintf}
3 @findex vsprintf
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsprintf.html}
6
7 Gnulib module: vsprintf-posix
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
13 @code{j}, @code{t}, @code{z}) on some platforms:
14 AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, MSVC 9, BeOS.
15 @item
16 printf of @samp{long double} numbers is unsupported on some platforms:
17 mingw, MSVC 9, BeOS.
18 @item
19 printf @code{"%f"}, @code{"%e"}, @code{"%g"} of Infinity and NaN yields an
20 incorrect result on some platforms:
21 AIX 5.2, OSF/1 5.1, Solaris 11 2011-11, mingw, MSVC 9.
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.5, NetBSD 5.0, OpenBSD 4.0, AIX 5.2, HP-UX 11,
26 IRIX 6.5, OSF/1 5.1, Solaris 11 2011-11, Cygwin 1.5.x, mingw, MSVC 9, BeOS.
27 @item
28 This function does not support the @samp{F} directive on some platforms:
29 NetBSD 3.0, AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9,
30 Cygwin 1.5.x, mingw, MSVC 9, BeOS.
31 @item
32 This function does not support the @samp{n} directive on some platforms:
33 MSVC 9.
34 @item
35 This function does not support the @samp{ls} directive on some platforms:
36 OpenBSD 4.0, IRIX 6.5, Solaris 2.6, Cygwin 1.5.x, Haiku.
37 @item
38 This function does not support precisions in the @samp{ls} directive correctly
39 on some platforms:
40 Solaris 11 2011-11.
41 @item
42 This function does not support format directives that access arguments in an
43 arbitrary order, such as @code{"%2$s"}, on some platforms:
44 NetBSD 3.0, mingw, MSVC 9, BeOS.
45 @item
46 This function doesn't support the @code{'} flag on some platforms:
47 NetBSD 3.0, Cygwin 1.5.24, mingw, MSVC 9.
48 @item
49 This function behaves incorrectly when a @samp{-} flag and a negative width
50 are specified together, on some platforms:
51 HP-UX 10.20.
52 @item
53 printf @code{"%010f"} of NaN and Infinity yields an incorrect result (padded
54 with zeroes) on some platforms:
55 MacOS X 10.5, FreeBSD 6.0, NetBSD 5.0, AIX 5.2, IRIX 6.5, OSF/1 5.1, Solaris 11 2011-11, Cygwin 1.5.x, mingw, MSVC 9.
56 @item
57 This function does not support precisions larger than 512 or 1024 in integer,
58 floating-point and pointer output on some platforms:
59 AIX 7.1, Solaris 10/x86, mingw, MSVC 9, BeOS.
60 @item
61 This function mishandles large floating point precisions
62 (for example, formatting 1.0 with @samp{"%.511f"})
63 on some platforms:
64 Solaris 10.
65 @item
66 This function can crash in out-of-memory conditions on some platforms:
67 MacOS X 10.3, FreeBSD 6.0, NetBSD 5.0.
68 @end itemize
69
70 Portability problems not fixed by Gnulib:
71 @itemize
72 @item
73 When formatting an integer with grouping flag, this function inserts thousands
74 separators even in the "C" locale on some platforms:
75 NetBSD 5.1.
76 @end itemize