xref: /freebsd/lib/libc/stdio/wprintf.3 (revision dc36d6f9bb1753f3808552f3afd30eda9a7b206a)
1c5604d0aSTim J. Robbins.\" Copyright (c) 1990, 1991, 1993
2c5604d0aSTim J. Robbins.\"	The Regents of the University of California.  All rights reserved.
3c5604d0aSTim J. Robbins.\"
4c5604d0aSTim J. Robbins.\" This code is derived from software contributed to Berkeley by
5c5604d0aSTim J. Robbins.\" Chris Torek and the American National Standards Committee X3,
6c5604d0aSTim J. Robbins.\" on Information Processing Systems.
7c5604d0aSTim J. Robbins.\"
8c5604d0aSTim J. Robbins.\" Redistribution and use in source and binary forms, with or without
9c5604d0aSTim J. Robbins.\" modification, are permitted provided that the following conditions
10c5604d0aSTim J. Robbins.\" are met:
11c5604d0aSTim J. Robbins.\" 1. Redistributions of source code must retain the above copyright
12c5604d0aSTim J. Robbins.\"    notice, this list of conditions and the following disclaimer.
13c5604d0aSTim J. Robbins.\" 2. Redistributions in binary form must reproduce the above copyright
14c5604d0aSTim J. Robbins.\"    notice, this list of conditions and the following disclaimer in the
15c5604d0aSTim J. Robbins.\"    documentation and/or other materials provided with the distribution.
16*fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
17c5604d0aSTim J. Robbins.\"    may be used to endorse or promote products derived from this software
18c5604d0aSTim J. Robbins.\"    without specific prior written permission.
19c5604d0aSTim J. Robbins.\"
20c5604d0aSTim J. Robbins.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21c5604d0aSTim J. Robbins.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22c5604d0aSTim J. Robbins.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23c5604d0aSTim J. Robbins.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24c5604d0aSTim J. Robbins.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25c5604d0aSTim J. Robbins.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26c5604d0aSTim J. Robbins.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27c5604d0aSTim J. Robbins.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28c5604d0aSTim J. Robbins.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29c5604d0aSTim J. Robbins.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30c5604d0aSTim J. Robbins.\" SUCH DAMAGE.
31c5604d0aSTim J. Robbins.\" FreeBSD: src/lib/libc/stdio/printf.3,v 1.47 2002/09/06 11:23:55 tjr Exp
32c5604d0aSTim J. Robbins.\"
338954a5c8STim J. Robbins.Dd July 5, 2003
34c5604d0aSTim J. Robbins.Dt WPRINTF 3
35c5604d0aSTim J. Robbins.Os
36c5604d0aSTim J. Robbins.Sh NAME
37c5604d0aSTim J. Robbins.Nm wprintf , fwprintf , swprintf ,
38c5604d0aSTim J. Robbins.Nm vwprintf , vfwprintf , vswprintf
39c5604d0aSTim J. Robbins.Nd formatted wide character output conversion
40c5604d0aSTim J. Robbins.Sh LIBRARY
41c5604d0aSTim J. Robbins.Lb libc
42c5604d0aSTim J. Robbins.Sh SYNOPSIS
43c5604d0aSTim J. Robbins.In stdio.h
44c5604d0aSTim J. Robbins.In wchar.h
45c5604d0aSTim J. Robbins.Ft int
46c5604d0aSTim J. Robbins.Fn fwprintf "FILE * restrict stream" "const wchar_t * restrict format" ...
47c5604d0aSTim J. Robbins.Ft int
48c5604d0aSTim J. Robbins.Fn swprintf "wchar_t * restrict ws" "size_t n" "const wchar_t * restrict format" ...
49c5604d0aSTim J. Robbins.Ft int
50c5604d0aSTim J. Robbins.Fn wprintf "const wchar_t * restrict format" ...
51c5604d0aSTim J. Robbins.In stdarg.h
52c5604d0aSTim J. Robbins.Ft int
53c5604d0aSTim J. Robbins.Fn vfwprintf "FILE * restrict stream" "const wchar_t * restrict" "va_list ap"
54c5604d0aSTim J. Robbins.Ft int
55c5604d0aSTim J. Robbins.Fn vswprintf "wchar_t * restrict ws" "size_t n" "const wchar_t *restrict format" "va_list ap"
56c5604d0aSTim J. Robbins.Ft int
57c5604d0aSTim J. Robbins.Fn vwprintf "const wchar_t * restrict format" "va_list ap"
58c5604d0aSTim J. Robbins.Sh DESCRIPTION
59c5604d0aSTim J. RobbinsThe
60c5604d0aSTim J. Robbins.Fn wprintf
61c5604d0aSTim J. Robbinsfamily of functions produces output according to a
62c5604d0aSTim J. Robbins.Fa format
63c5604d0aSTim J. Robbinsas described below.
64c5604d0aSTim J. RobbinsThe
65c5604d0aSTim J. Robbins.Fn wprintf
66c5604d0aSTim J. Robbinsand
67c5604d0aSTim J. Robbins.Fn vwprintf
68c5604d0aSTim J. Robbinsfunctions
69c5604d0aSTim J. Robbinswrite output to
70ae828962SRuslan Ermilov.Dv stdout ,
71c5604d0aSTim J. Robbinsthe standard output stream;
72c5604d0aSTim J. Robbins.Fn fwprintf
73c5604d0aSTim J. Robbinsand
74c5604d0aSTim J. Robbins.Fn vfwprintf
75c5604d0aSTim J. Robbinswrite output to the given output
76c5604d0aSTim J. Robbins.Fa stream ;
770e2e1007STim J. Robbins.Fn swprintf
78c5604d0aSTim J. Robbinsand
790e2e1007STim J. Robbins.Fn vswprintf
80c5604d0aSTim J. Robbinswrite to the wide character string
81c5604d0aSTim J. Robbins.Fa ws .
82c5604d0aSTim J. Robbins.Pp
83c5604d0aSTim J. RobbinsThese functions write the output under the control of a
84c5604d0aSTim J. Robbins.Fa format
85c5604d0aSTim J. Robbinsstring that specifies how subsequent arguments
86c5604d0aSTim J. Robbins(or arguments accessed via the variable-length argument facilities of
87c5604d0aSTim J. Robbins.Xr stdarg 3 )
88c5604d0aSTim J. Robbinsare converted for output.
89c5604d0aSTim J. Robbins.Pp
90c5604d0aSTim J. RobbinsThese functions return the number of characters printed
91c5604d0aSTim J. Robbins(not including the trailing
92c5604d0aSTim J. Robbins.Ql \e0
93c5604d0aSTim J. Robbinsused to end output to strings).
94c5604d0aSTim J. Robbins.Pp
95c5604d0aSTim J. RobbinsThe
96c5604d0aSTim J. Robbins.Fn swprintf
97c5604d0aSTim J. Robbinsand
98c5604d0aSTim J. Robbins.Fn vswprintf
99c5604d0aSTim J. Robbinsfunctions will fail if
100c5604d0aSTim J. Robbins.Fa n
101c5604d0aSTim J. Robbinsor more wide characters were requested to be written,
102c5604d0aSTim J. Robbins.Pp
103c5604d0aSTim J. RobbinsThe format string is composed of zero or more directives:
104c5604d0aSTim J. Robbinsordinary
105c5604d0aSTim J. Robbinscharacters (not
106c5604d0aSTim J. Robbins.Cm % ) ,
107c5604d0aSTim J. Robbinswhich are copied unchanged to the output stream;
108c5604d0aSTim J. Robbinsand conversion specifications, each of which results
109c5604d0aSTim J. Robbinsin fetching zero or more subsequent arguments.
110c5604d0aSTim J. RobbinsEach conversion specification is introduced by
111c5604d0aSTim J. Robbinsthe
112c5604d0aSTim J. Robbins.Cm %
113c5604d0aSTim J. Robbinscharacter.
114c5604d0aSTim J. RobbinsThe arguments must correspond properly (after type promotion)
115c5604d0aSTim J. Robbinswith the conversion specifier.
116c5604d0aSTim J. RobbinsAfter the
117c5604d0aSTim J. Robbins.Cm % ,
118c5604d0aSTim J. Robbinsthe following appear in sequence:
119c5604d0aSTim J. Robbins.Bl -bullet
120c5604d0aSTim J. Robbins.It
121c5604d0aSTim J. RobbinsAn optional field, consisting of a decimal digit string followed by a
122c5604d0aSTim J. Robbins.Cm $ ,
123c5604d0aSTim J. Robbinsspecifying the next argument to access.
124c5604d0aSTim J. RobbinsIf this field is not provided, the argument following the last
125c5604d0aSTim J. Robbinsargument accessed will be used.
126c5604d0aSTim J. RobbinsArguments are numbered starting at
127c5604d0aSTim J. Robbins.Cm 1 .
128c5604d0aSTim J. RobbinsIf unaccessed arguments in the format string are interspersed with ones that
129c5604d0aSTim J. Robbinsare accessed the results will be indeterminate.
130c5604d0aSTim J. Robbins.It
131c5604d0aSTim J. RobbinsZero or more of the following flags:
132c5604d0aSTim J. Robbins.Bl -tag -width ".So \  Sc (space)"
133c5604d0aSTim J. Robbins.It Sq Cm #
134c5604d0aSTim J. RobbinsThe value should be converted to an
135c5604d0aSTim J. Robbins.Dq alternate form .
136c5604d0aSTim J. RobbinsFor
137c5604d0aSTim J. Robbins.Cm c , d , i , n , p , s ,
138c5604d0aSTim J. Robbinsand
139c5604d0aSTim J. Robbins.Cm u
140c5604d0aSTim J. Robbinsconversions, this option has no effect.
141c5604d0aSTim J. RobbinsFor
142c5604d0aSTim J. Robbins.Cm o
143c5604d0aSTim J. Robbinsconversions, the precision of the number is increased to force the first
144c5604d0aSTim J. Robbinscharacter of the output string to a zero (except if a zero value is printed
145c5604d0aSTim J. Robbinswith an explicit precision of zero).
146c5604d0aSTim J. RobbinsFor
147c5604d0aSTim J. Robbins.Cm x
148c5604d0aSTim J. Robbinsand
149c5604d0aSTim J. Robbins.Cm X
150c5604d0aSTim J. Robbinsconversions, a non-zero result has the string
151c5604d0aSTim J. Robbins.Ql 0x
152c5604d0aSTim J. Robbins(or
153c5604d0aSTim J. Robbins.Ql 0X
154c5604d0aSTim J. Robbinsfor
155c5604d0aSTim J. Robbins.Cm X
156c5604d0aSTim J. Robbinsconversions) prepended to it.
157c5604d0aSTim J. RobbinsFor
158c5604d0aSTim J. Robbins.Cm a , A , e , E , f , F , g ,
159c5604d0aSTim J. Robbinsand
160c5604d0aSTim J. Robbins.Cm G
161c5604d0aSTim J. Robbinsconversions, the result will always contain a decimal point, even if no
162c5604d0aSTim J. Robbinsdigits follow it (normally, a decimal point appears in the results of
163c5604d0aSTim J. Robbinsthose conversions only if a digit follows).
164c5604d0aSTim J. RobbinsFor
165c5604d0aSTim J. Robbins.Cm g
166c5604d0aSTim J. Robbinsand
167c5604d0aSTim J. Robbins.Cm G
168c5604d0aSTim J. Robbinsconversions, trailing zeros are not removed from the result as they
169c5604d0aSTim J. Robbinswould otherwise be.
170c5604d0aSTim J. Robbins.It So Cm 0 Sc (zero)
171c5604d0aSTim J. RobbinsZero padding.
172c5604d0aSTim J. RobbinsFor all conversions except
173c5604d0aSTim J. Robbins.Cm n ,
174c5604d0aSTim J. Robbinsthe converted value is padded on the left with zeros rather than blanks.
175c5604d0aSTim J. RobbinsIf a precision is given with a numeric conversion
176c5604d0aSTim J. Robbins.Cm ( d , i , o , u , i , x ,
177c5604d0aSTim J. Robbinsand
178c5604d0aSTim J. Robbins.Cm X ) ,
179c5604d0aSTim J. Robbinsthe
180c5604d0aSTim J. Robbins.Cm 0
181c5604d0aSTim J. Robbinsflag is ignored.
182c5604d0aSTim J. Robbins.It Sq Cm \-
183c5604d0aSTim J. RobbinsA negative field width flag;
184c5604d0aSTim J. Robbinsthe converted value is to be left adjusted on the field boundary.
185c5604d0aSTim J. RobbinsExcept for
186c5604d0aSTim J. Robbins.Cm n
187c5604d0aSTim J. Robbinsconversions, the converted value is padded on the right with blanks,
188c5604d0aSTim J. Robbinsrather than on the left with blanks or zeros.
189c5604d0aSTim J. RobbinsA
190c5604d0aSTim J. Robbins.Cm \-
191c5604d0aSTim J. Robbinsoverrides a
192c5604d0aSTim J. Robbins.Cm 0
193c5604d0aSTim J. Robbinsif both are given.
194c5604d0aSTim J. Robbins.It So "\ " Sc (space)
195c5604d0aSTim J. RobbinsA blank should be left before a positive number
196c5604d0aSTim J. Robbinsproduced by a signed conversion
197c5604d0aSTim J. Robbins.Cm ( a , A , d , e , E , f , F , g , G ,
198c5604d0aSTim J. Robbinsor
199c5604d0aSTim J. Robbins.Cm i ) .
200c5604d0aSTim J. Robbins.It Sq Cm +
201c5604d0aSTim J. RobbinsA sign must always be placed before a
202c5604d0aSTim J. Robbinsnumber produced by a signed conversion.
203c5604d0aSTim J. RobbinsA
204c5604d0aSTim J. Robbins.Cm +
205c5604d0aSTim J. Robbinsoverrides a space if both are used.
206c5604d0aSTim J. Robbins.It Sq Cm '
207c5604d0aSTim J. RobbinsDecimal conversions
208c5604d0aSTim J. Robbins.Cm ( d , u ,
209c5604d0aSTim J. Robbinsor
210c5604d0aSTim J. Robbins.Cm i )
211c5604d0aSTim J. Robbinsor the integral portion of a floating point conversion
212c5604d0aSTim J. Robbins.Cm ( f
213c5604d0aSTim J. Robbinsor
214c5604d0aSTim J. Robbins.Cm F )
215c5604d0aSTim J. Robbinsshould be grouped and separated by thousands using
216c5604d0aSTim J. Robbinsthe non-monetary separator returned by
217c5604d0aSTim J. Robbins.Xr localeconv 3 .
218c5604d0aSTim J. Robbins.El
219c5604d0aSTim J. Robbins.It
220c5604d0aSTim J. RobbinsAn optional decimal digit string specifying a minimum field width.
221c5604d0aSTim J. RobbinsIf the converted value has fewer characters than the field width, it will
222c5604d0aSTim J. Robbinsbe padded with spaces on the left (or right, if the left-adjustment
223c5604d0aSTim J. Robbinsflag has been given) to fill out
224c5604d0aSTim J. Robbinsthe field width.
225c5604d0aSTim J. Robbins.It
226c5604d0aSTim J. RobbinsAn optional precision, in the form of a period
227c5604d0aSTim J. Robbins.Cm \&.
228c5604d0aSTim J. Robbinsfollowed by an
229c5604d0aSTim J. Robbinsoptional digit string.
230c5604d0aSTim J. RobbinsIf the digit string is omitted, the precision is taken as zero.
231c5604d0aSTim J. RobbinsThis gives the minimum number of digits to appear for
232c5604d0aSTim J. Robbins.Cm d , i , o , u , x ,
233c5604d0aSTim J. Robbinsand
234c5604d0aSTim J. Robbins.Cm X
235c5604d0aSTim J. Robbinsconversions, the number of digits to appear after the decimal-point for
236c5604d0aSTim J. Robbins.Cm a , A , e , E , f ,
237c5604d0aSTim J. Robbinsand
238c5604d0aSTim J. Robbins.Cm F
239c5604d0aSTim J. Robbinsconversions, the maximum number of significant digits for
240c5604d0aSTim J. Robbins.Cm g
241c5604d0aSTim J. Robbinsand
242c5604d0aSTim J. Robbins.Cm G
243c5604d0aSTim J. Robbinsconversions, or the maximum number of characters to be printed from a
244c5604d0aSTim J. Robbinsstring for
245c5604d0aSTim J. Robbins.Cm s
246c5604d0aSTim J. Robbinsconversions.
247c5604d0aSTim J. Robbins.It
248c5604d0aSTim J. RobbinsAn optional length modifier, that specifies the size of the argument.
249c5604d0aSTim J. RobbinsThe following length modifiers are valid for the
250c5604d0aSTim J. Robbins.Cm d , i , n , o , u , x ,
251c5604d0aSTim J. Robbinsor
252c5604d0aSTim J. Robbins.Cm X
253c5604d0aSTim J. Robbinsconversion:
254c5604d0aSTim J. Robbins.Bl -column ".Cm q Em (deprecated)" ".Vt signed char" ".Vt unsigned long long" ".Vt long long *"
255c5604d0aSTim J. Robbins.It Sy Modifier Ta Cm d , i Ta Cm o , u , x , X Ta Cm n
256c5604d0aSTim J. Robbins.It Cm hh Ta Vt "signed char" Ta Vt "unsigned char" Ta Vt "signed char *"
257c5604d0aSTim J. Robbins.It Cm h Ta Vt short Ta Vt "unsigned short" Ta Vt "short *"
258c5604d0aSTim J. Robbins.It Cm l No (ell) Ta Vt long Ta Vt "unsigned long" Ta Vt "long *"
259c5604d0aSTim J. Robbins.It Cm ll No (ell ell) Ta Vt "long long" Ta Vt "unsigned long long" Ta Vt "long long *"
260c5604d0aSTim J. Robbins.It Cm j Ta Vt intmax_t Ta Vt uintmax_t Ta Vt "intmax_t *"
261c5604d0aSTim J. Robbins.It Cm t Ta Vt ptrdiff_t Ta (see note) Ta Vt "ptrdiff_t *"
262c5604d0aSTim J. Robbins.It Cm z Ta (see note) Ta Vt size_t Ta (see note)
263c5604d0aSTim J. Robbins.It Cm q Em (deprecated) Ta Vt quad_t Ta Vt u_quad_t Ta Vt "quad_t *"
264c5604d0aSTim J. Robbins.El
265c5604d0aSTim J. Robbins.Pp
266c5604d0aSTim J. RobbinsNote:
267c5604d0aSTim J. Robbinsthe
268c5604d0aSTim J. Robbins.Cm t
269c5604d0aSTim J. Robbinsmodifier, when applied to a
270c5604d0aSTim J. Robbins.Cm o , u , x ,
271c5604d0aSTim J. Robbinsor
272c5604d0aSTim J. Robbins.Cm X
273c5604d0aSTim J. Robbinsconversion, indicates that the argument is of an unsigned type
274c5604d0aSTim J. Robbinsequivalent in size to a
275c5604d0aSTim J. Robbins.Vt ptrdiff_t .
276c5604d0aSTim J. RobbinsThe
277c5604d0aSTim J. Robbins.Cm z
278c5604d0aSTim J. Robbinsmodifier, when applied to a
279c5604d0aSTim J. Robbins.Cm d
280c5604d0aSTim J. Robbinsor
281c5604d0aSTim J. Robbins.Cm i
282c5604d0aSTim J. Robbinsconversion, indicates that the argument is of a signed type equivalent in
283c5604d0aSTim J. Robbinssize to a
284c5604d0aSTim J. Robbins.Vt size_t .
285c5604d0aSTim J. RobbinsSimilarly, when applied to an
286c5604d0aSTim J. Robbins.Cm n
287c5604d0aSTim J. Robbinsconversion, it indicates that the argument is a pointer to a signed type
288c5604d0aSTim J. Robbinsequivalent in size to a
289c5604d0aSTim J. Robbins.Vt size_t .
290c5604d0aSTim J. Robbins.Pp
291c5604d0aSTim J. RobbinsThe following length modifier is valid for the
292c5604d0aSTim J. Robbins.Cm a , A , e , E , f , F , g ,
293c5604d0aSTim J. Robbinsor
294c5604d0aSTim J. Robbins.Cm G
295c5604d0aSTim J. Robbinsconversion:
296c5604d0aSTim J. Robbins.Bl -column ".Sy Modifier" ".Cm a , A , e , E , f , F , g , G"
297c5604d0aSTim J. Robbins.It Sy Modifier Ta Cm a , A , e , E , f , F , g , G
298c5604d0aSTim J. Robbins.It Cm L Ta Vt "long double"
299c5604d0aSTim J. Robbins.El
300c5604d0aSTim J. Robbins.Pp
301c5604d0aSTim J. RobbinsThe following length modifier is valid for the
302c5604d0aSTim J. Robbins.Cm c
303c5604d0aSTim J. Robbinsor
304c5604d0aSTim J. Robbins.Cm s
305c5604d0aSTim J. Robbinsconversion:
306c5604d0aSTim J. Robbins.Bl -column ".Sy Modifier" ".Vt wint_t" ".Vt wchar_t *"
307c5604d0aSTim J. Robbins.It Sy Modifier Ta Cm c Ta Cm s
308c5604d0aSTim J. Robbins.It Cm l No (ell) Ta Vt wint_t Ta Vt "wchar_t *"
309c5604d0aSTim J. Robbins.El
310c5604d0aSTim J. Robbins.It
311c5604d0aSTim J. RobbinsA character that specifies the type of conversion to be applied.
312c5604d0aSTim J. Robbins.El
313c5604d0aSTim J. Robbins.Pp
314c5604d0aSTim J. RobbinsA field width or precision, or both, may be indicated by
315c5604d0aSTim J. Robbinsan asterisk
316c5604d0aSTim J. Robbins.Ql *
317c5604d0aSTim J. Robbinsor an asterisk followed by one or more decimal digits and a
318c5604d0aSTim J. Robbins.Ql $
319c5604d0aSTim J. Robbinsinstead of a
320c5604d0aSTim J. Robbinsdigit string.
321c5604d0aSTim J. RobbinsIn this case, an
322c5604d0aSTim J. Robbins.Vt int
323c5604d0aSTim J. Robbinsargument supplies the field width or precision.
324c5604d0aSTim J. RobbinsA negative field width is treated as a left adjustment flag followed by a
325c5604d0aSTim J. Robbinspositive field width; a negative precision is treated as though it were
326c5604d0aSTim J. Robbinsmissing.
327c5604d0aSTim J. RobbinsIf a single format directive mixes positional
328c5604d0aSTim J. Robbins.Pq Li nn$
329c5604d0aSTim J. Robbinsand non-positional arguments, the results are undefined.
330c5604d0aSTim J. Robbins.Pp
331c5604d0aSTim J. RobbinsThe conversion specifiers and their meanings are:
332c5604d0aSTim J. Robbins.Bl -tag -width ".Cm diouxX"
333c5604d0aSTim J. Robbins.It Cm diouxX
334c5604d0aSTim J. RobbinsThe
335c5604d0aSTim J. Robbins.Vt int
336c5604d0aSTim J. Robbins(or appropriate variant) argument is converted to signed decimal
337c5604d0aSTim J. Robbins.Cm ( d
338c5604d0aSTim J. Robbinsand
339c5604d0aSTim J. Robbins.Cm i ) ,
340c5604d0aSTim J. Robbinsunsigned octal
341c5604d0aSTim J. Robbins.Pq Cm o ,
342c5604d0aSTim J. Robbinsunsigned decimal
343c5604d0aSTim J. Robbins.Pq Cm u ,
344c5604d0aSTim J. Robbinsor unsigned hexadecimal
345c5604d0aSTim J. Robbins.Cm ( x
346c5604d0aSTim J. Robbinsand
347c5604d0aSTim J. Robbins.Cm X )
348c5604d0aSTim J. Robbinsnotation.
349c5604d0aSTim J. RobbinsThe letters
350c5604d0aSTim J. Robbins.Dq Li abcdef
351c5604d0aSTim J. Robbinsare used for
352c5604d0aSTim J. Robbins.Cm x
353c5604d0aSTim J. Robbinsconversions; the letters
354c5604d0aSTim J. Robbins.Dq Li ABCDEF
355c5604d0aSTim J. Robbinsare used for
356c5604d0aSTim J. Robbins.Cm X
357c5604d0aSTim J. Robbinsconversions.
358c5604d0aSTim J. RobbinsThe precision, if any, gives the minimum number of digits that must
359c5604d0aSTim J. Robbinsappear; if the converted value requires fewer digits, it is padded on
360c5604d0aSTim J. Robbinsthe left with zeros.
361c5604d0aSTim J. Robbins.It Cm DOU
362c5604d0aSTim J. RobbinsThe
363c5604d0aSTim J. Robbins.Vt "long int"
364c5604d0aSTim J. Robbinsargument is converted to signed decimal, unsigned octal, or unsigned
365c5604d0aSTim J. Robbinsdecimal, as if the format had been
366c5604d0aSTim J. Robbins.Cm ld , lo ,
367c5604d0aSTim J. Robbinsor
368c5604d0aSTim J. Robbins.Cm lu
369c5604d0aSTim J. Robbinsrespectively.
370c5604d0aSTim J. RobbinsThese conversion characters are deprecated, and will eventually disappear.
371c5604d0aSTim J. Robbins.It Cm eE
372c5604d0aSTim J. RobbinsThe
373c5604d0aSTim J. Robbins.Vt double
374c5604d0aSTim J. Robbinsargument is rounded and converted in the style
375c5604d0aSTim J. Robbins.Sm off
376488704b2SUlrich Spörlein.Oo \- Oc Ar d Li \&. Ar ddd Li e \(+- Ar dd
377c5604d0aSTim J. Robbins.Sm on
378c5604d0aSTim J. Robbinswhere there is one digit before the
379c5604d0aSTim J. Robbinsdecimal-point character
380c5604d0aSTim J. Robbinsand the number of digits after it is equal to the precision;
381c5604d0aSTim J. Robbinsif the precision is missing,
382c5604d0aSTim J. Robbinsit is taken as 6; if the precision is
383c5604d0aSTim J. Robbinszero, no decimal-point character appears.
384c5604d0aSTim J. RobbinsAn
385c5604d0aSTim J. Robbins.Cm E
386c5604d0aSTim J. Robbinsconversion uses the letter
387c5604d0aSTim J. Robbins.Ql E
388c5604d0aSTim J. Robbins(rather than
389c5604d0aSTim J. Robbins.Ql e )
390c5604d0aSTim J. Robbinsto introduce the exponent.
391c5604d0aSTim J. RobbinsThe exponent always contains at least two digits; if the value is zero,
392c5604d0aSTim J. Robbinsthe exponent is 00.
393c5604d0aSTim J. Robbins.Pp
394c5604d0aSTim J. RobbinsFor
395c5604d0aSTim J. Robbins.Cm a , A , e , E , f , F , g ,
396c5604d0aSTim J. Robbinsand
397c5604d0aSTim J. Robbins.Cm G
398c5604d0aSTim J. Robbinsconversions, positive and negative infinity are represented as
399c5604d0aSTim J. Robbins.Li inf
400c5604d0aSTim J. Robbinsand
401c5604d0aSTim J. Robbins.Li -inf
402c5604d0aSTim J. Robbinsrespectively when using the lowercase conversion character, and
403c5604d0aSTim J. Robbins.Li INF
404c5604d0aSTim J. Robbinsand
405c5604d0aSTim J. Robbins.Li -INF
406c5604d0aSTim J. Robbinsrespectively when using the uppercase conversion character.
407c5604d0aSTim J. RobbinsSimilarly, NaN is represented as
408c5604d0aSTim J. Robbins.Li nan
409c5604d0aSTim J. Robbinswhen using the lowercase conversion, and
410c5604d0aSTim J. Robbins.Li NAN
411c5604d0aSTim J. Robbinswhen using the uppercase conversion.
412c5604d0aSTim J. Robbins.It Cm fF
413c5604d0aSTim J. RobbinsThe
414c5604d0aSTim J. Robbins.Vt double
415c5604d0aSTim J. Robbinsargument is rounded and converted to decimal notation in the style
416c5604d0aSTim J. Robbins.Sm off
417c5604d0aSTim J. Robbins.Oo \- Oc Ar ddd Li \&. Ar ddd ,
418c5604d0aSTim J. Robbins.Sm on
419c5604d0aSTim J. Robbinswhere the number of digits after the decimal-point character
420c5604d0aSTim J. Robbinsis equal to the precision specification.
421c5604d0aSTim J. RobbinsIf the precision is missing, it is taken as 6; if the precision is
422c5604d0aSTim J. Robbinsexplicitly zero, no decimal-point character appears.
423c5604d0aSTim J. RobbinsIf a decimal point appears, at least one digit appears before it.
424c5604d0aSTim J. Robbins.It Cm gG
425c5604d0aSTim J. RobbinsThe
426c5604d0aSTim J. Robbins.Vt double
427c5604d0aSTim J. Robbinsargument is converted in style
428c5604d0aSTim J. Robbins.Cm f
429c5604d0aSTim J. Robbinsor
430c5604d0aSTim J. Robbins.Cm e
431c5604d0aSTim J. Robbins(or
432c5604d0aSTim J. Robbins.Cm F
433c5604d0aSTim J. Robbinsor
434c5604d0aSTim J. Robbins.Cm E
435c5604d0aSTim J. Robbinsfor
436c5604d0aSTim J. Robbins.Cm G
437c5604d0aSTim J. Robbinsconversions).
438c5604d0aSTim J. RobbinsThe precision specifies the number of significant digits.
439c5604d0aSTim J. RobbinsIf the precision is missing, 6 digits are given; if the precision is zero,
440c5604d0aSTim J. Robbinsit is treated as 1.
441c5604d0aSTim J. RobbinsStyle
442c5604d0aSTim J. Robbins.Cm e
443c5604d0aSTim J. Robbinsis used if the exponent from its conversion is less than \-4 or greater than
444c5604d0aSTim J. Robbinsor equal to the precision.
445c5604d0aSTim J. RobbinsTrailing zeros are removed from the fractional part of the result; a
446c5604d0aSTim J. Robbinsdecimal point appears only if it is followed by at least one digit.
447c5604d0aSTim J. Robbins.It Cm aA
448c5604d0aSTim J. RobbinsThe
449c5604d0aSTim J. Robbins.Vt double
450c5604d0aSTim J. Robbinsargument is converted to hexadecimal notation in the style
451c5604d0aSTim J. Robbins.Sm off
452488704b2SUlrich Spörlein.Oo \- Oc Li 0x Ar h Li \&. Ar hhhp Oo \(+- Oc Ar d ,
453c5604d0aSTim J. Robbins.Sm on
454c5604d0aSTim J. Robbinswhere the number of digits after the hexadecimal-point character
455c5604d0aSTim J. Robbinsis equal to the precision specification.
456c5604d0aSTim J. RobbinsIf the precision is missing, it is taken as enough to exactly
457c5604d0aSTim J. Robbinsrepresent the floating-point number; if the precision is
458c5604d0aSTim J. Robbinsexplicitly zero, no hexadecimal-point character appears.
459c5604d0aSTim J. RobbinsThis is an exact conversion of the mantissa+exponent internal
460c5604d0aSTim J. Robbinsfloating point representation; the
461c5604d0aSTim J. Robbins.Sm off
462c5604d0aSTim J. Robbins.Oo \- Oc Li 0x Ar h Li \&. Ar hhh
463c5604d0aSTim J. Robbins.Sm on
464c5604d0aSTim J. Robbinsportion represents exactly the mantissa; only denormalized
465c5604d0aSTim J. Robbinsmantissas have a zero value to the left of the hexadecimal
466c5604d0aSTim J. Robbinspoint.
467c5604d0aSTim J. RobbinsThe
468c5604d0aSTim J. Robbins.Cm p
469c5604d0aSTim J. Robbinsis a literal character
470c5604d0aSTim J. Robbins.Ql p ;
471c5604d0aSTim J. Robbinsthe exponent is preceded by a positive or negative sign
472c5604d0aSTim J. Robbinsand is represented in decimal, using only enough characters
473c5604d0aSTim J. Robbinsto represent the exponent.
474c5604d0aSTim J. RobbinsThe
475c5604d0aSTim J. Robbins.Cm A
476c5604d0aSTim J. Robbinsconversion uses the prefix
477c5604d0aSTim J. Robbins.Dq Li 0X
478c5604d0aSTim J. Robbins(rather than
479c5604d0aSTim J. Robbins.Dq Li 0x ) ,
480c5604d0aSTim J. Robbinsthe letters
481c5604d0aSTim J. Robbins.Dq Li ABCDEF
482c5604d0aSTim J. Robbins(rather than
483c5604d0aSTim J. Robbins.Dq Li abcdef )
484c5604d0aSTim J. Robbinsto represent the hex digits, and the letter
485c5604d0aSTim J. Robbins.Ql P
486c5604d0aSTim J. Robbins(rather than
487c5604d0aSTim J. Robbins.Ql p )
488c5604d0aSTim J. Robbinsto separate the mantissa and exponent.
489c5604d0aSTim J. Robbins.It Cm C
490c5604d0aSTim J. RobbinsTreated as
491c5604d0aSTim J. Robbins.Cm c
492c5604d0aSTim J. Robbinswith the
493c5604d0aSTim J. Robbins.Cm l
494c5604d0aSTim J. Robbins(ell) modifier.
495c5604d0aSTim J. Robbins.It Cm c
496c5604d0aSTim J. RobbinsThe
497c5604d0aSTim J. Robbins.Vt int
498c5604d0aSTim J. Robbinsargument is converted to an
499c5604d0aSTim J. Robbins.Vt "unsigned char" ,
500c5604d0aSTim J. Robbinsthen to a
501c5604d0aSTim J. Robbins.Vt wchar_t
502c5604d0aSTim J. Robbinsas if by
503c5604d0aSTim J. Robbins.Xr btowc 3 ,
504c5604d0aSTim J. Robbinsand the resulting character is written.
505c5604d0aSTim J. Robbins.Pp
506c5604d0aSTim J. RobbinsIf the
507c5604d0aSTim J. Robbins.Cm l
508c5604d0aSTim J. Robbins(ell) modifier is used, the
509c5604d0aSTim J. Robbins.Vt wint_t
510c5604d0aSTim J. Robbinsargument is converted to a
511c5604d0aSTim J. Robbins.Vt wchar_t
512c5604d0aSTim J. Robbinsand written.
513c5604d0aSTim J. Robbins.It Cm S
514c5604d0aSTim J. RobbinsTreated as
515c5604d0aSTim J. Robbins.Cm s
516c5604d0aSTim J. Robbinswith the
517c5604d0aSTim J. Robbins.Cm l
518c5604d0aSTim J. Robbins(ell) modifier.
519c5604d0aSTim J. Robbins.It Cm s
520c5604d0aSTim J. RobbinsThe
521c5604d0aSTim J. Robbins.Vt "char *"
522c5604d0aSTim J. Robbinsargument is expected to be a pointer to an array of character type (pointer
523c5604d0aSTim J. Robbinsto a string) containing a multibyte sequence.
524c5604d0aSTim J. RobbinsCharacters from the array are converted to wide characters and written up to
525c5604d0aSTim J. Robbins(but not including)
526c5604d0aSTim J. Robbinsa terminating
527c5604d0aSTim J. Robbins.Dv NUL
528c5604d0aSTim J. Robbinscharacter;
529c5604d0aSTim J. Robbinsif a precision is specified, no more than the number specified are
530c5604d0aSTim J. Robbinswritten.
531c5604d0aSTim J. RobbinsIf a precision is given, no null character
532c5604d0aSTim J. Robbinsneed be present; if the precision is not specified, or is greater than
533c5604d0aSTim J. Robbinsthe size of the array, the array must contain a terminating
534c5604d0aSTim J. Robbins.Dv NUL
535c5604d0aSTim J. Robbinscharacter.
536c5604d0aSTim J. Robbins.Pp
537c5604d0aSTim J. RobbinsIf the
538c5604d0aSTim J. Robbins.Cm l
539c5604d0aSTim J. Robbins(ell) modifier is used, the
540c5604d0aSTim J. Robbins.Vt "wchar_t *"
541c5604d0aSTim J. Robbinsargument is expected to be a pointer to an array of wide characters
542c5604d0aSTim J. Robbins(pointer to a wide string).
543c5604d0aSTim J. RobbinsEach wide character in the string
544c5604d0aSTim J. Robbinsis written.
545c5604d0aSTim J. RobbinsWide characters from the array are written up to (but not including)
546c5604d0aSTim J. Robbinsa terminating wide
547c5604d0aSTim J. Robbins.Dv NUL
548c5604d0aSTim J. Robbinscharacter;
549c5604d0aSTim J. Robbinsif a precision is specified, no more than the number specified are
550c5604d0aSTim J. Robbinswritten (including shift sequences).
551c5604d0aSTim J. RobbinsIf a precision is given, no null character
552c5604d0aSTim J. Robbinsneed be present; if the precision is not specified, or is greater than
553c5604d0aSTim J. Robbinsthe number of characters in
554c5604d0aSTim J. Robbinsthe string, the array must contain a terminating wide
555c5604d0aSTim J. Robbins.Dv NUL
556c5604d0aSTim J. Robbinscharacter.
557c5604d0aSTim J. Robbins.It Cm p
558c5604d0aSTim J. RobbinsThe
559c5604d0aSTim J. Robbins.Vt "void *"
560c5604d0aSTim J. Robbinspointer argument is printed in hexadecimal (as if by
561c5604d0aSTim J. Robbins.Ql %#x
562c5604d0aSTim J. Robbinsor
563c5604d0aSTim J. Robbins.Ql %#lx ) .
564c5604d0aSTim J. Robbins.It Cm n
565c5604d0aSTim J. RobbinsThe number of characters written so far is stored into the
566c5604d0aSTim J. Robbinsinteger indicated by the
567c5604d0aSTim J. Robbins.Vt "int *"
568c5604d0aSTim J. Robbins(or variant) pointer argument.
569c5604d0aSTim J. RobbinsNo argument is converted.
570c5604d0aSTim J. Robbins.It Cm %
571c5604d0aSTim J. RobbinsA
572c5604d0aSTim J. Robbins.Ql %
573c5604d0aSTim J. Robbinsis written.
574c5604d0aSTim J. RobbinsNo argument is converted.
575c5604d0aSTim J. RobbinsThe complete conversion specification
576c5604d0aSTim J. Robbinsis
577c5604d0aSTim J. Robbins.Ql %% .
578c5604d0aSTim J. Robbins.El
579c5604d0aSTim J. Robbins.Pp
580c5604d0aSTim J. RobbinsThe decimal point
581c5604d0aSTim J. Robbinscharacter is defined in the program's locale (category
582c5604d0aSTim J. Robbins.Dv LC_NUMERIC ) .
583c5604d0aSTim J. Robbins.Pp
584c5604d0aSTim J. RobbinsIn no case does a non-existent or small field width cause truncation of
585c5604d0aSTim J. Robbinsa numeric field; if the result of a conversion is wider than the field
586c5604d0aSTim J. Robbinswidth, the
587c5604d0aSTim J. Robbinsfield is expanded to contain the conversion result.
588c5604d0aSTim J. Robbins.Sh SEE ALSO
5898954a5c8STim J. Robbins.Xr btowc 3 ,
5908954a5c8STim J. Robbins.Xr fputws 3 ,
591c5604d0aSTim J. Robbins.Xr printf 3 ,
5928954a5c8STim J. Robbins.Xr putwc 3 ,
5938954a5c8STim J. Robbins.Xr setlocale 3 ,
5948954a5c8STim J. Robbins.Xr wcsrtombs 3 ,
5958954a5c8STim J. Robbins.Xr wscanf 3
596c5604d0aSTim J. Robbins.Sh STANDARDS
597c5604d0aSTim J. RobbinsSubject to the caveats noted in the
598c5604d0aSTim J. Robbins.Sx BUGS
599c5604d0aSTim J. Robbinssection
600c5604d0aSTim J. Robbinsof
601c5604d0aSTim J. Robbins.Xr printf 3 ,
602c5604d0aSTim J. Robbinsthe
603c5604d0aSTim J. Robbins.Fn wprintf ,
604c5604d0aSTim J. Robbins.Fn fwprintf ,
605c5604d0aSTim J. Robbins.Fn swprintf ,
606c5604d0aSTim J. Robbins.Fn vwprintf ,
607c5604d0aSTim J. Robbins.Fn vfwprintf
608c5604d0aSTim J. Robbinsand
609c5604d0aSTim J. Robbins.Fn vswprintf
610c5604d0aSTim J. Robbinsfunctions
611c5604d0aSTim J. Robbinsconform to
612c5604d0aSTim J. Robbins.St -isoC-99 .
6130afc94c1SUlrich Spörlein.Sh SECURITY CONSIDERATIONS
6140afc94c1SUlrich SpörleinRefer to
6150afc94c1SUlrich Spörlein.Xr printf 3 .
616