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