doc: mention more functions added in cygwin 1.7.0
[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, BeOS.
15 @item
16 printf of @samp{long double} numbers is unsupported on some platforms:
17 mingw, 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 10, mingw.
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,
26 IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, 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, BeOS.
31 @item
32 This function does not support format directives that access arguments in an
33 arbitrary order, such as @code{"%2$s"}, on some platforms:
34 NetBSD 3.0, mingw, BeOS.
35 @item
36 This function doesn't support the @code{'} flag on some platforms:
37 NetBSD 3.0, Cygwin 1.5.24, mingw.
38 @item
39 This function behaves incorrectly when a @samp{-} flag and a negative width
40 are specified together, on some platforms:
41 HP-UX 10.20.
42 @item
43 printf @code{"%010f"} of NaN and Infinity yields an incorrect result (padded
44 with zeroes) on some platforms:
45 MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.2, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw.
46 @item
47 This function does not support precisions larger than 512 or 1024 in integer,
48 floating-point and pointer output on some platforms:
49 mingw, BeOS.
50 @item
51 This function can crash in out-of-memory conditions on some platforms:
52 MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0.
53 @end itemize
54
55 Portability problems not fixed by Gnulib:
56 @itemize
57 @end itemize