]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libc/stdio/printf.3
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / libc / stdio / printf.3
1 .\" Copyright (c) 1990, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Chris Torek and the American National Standards Committee X3,
6 .\" on Information Processing Systems.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)printf.3    8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD$
34 .\"
35 .Dd October 16, 2004
36 .Dt PRINTF 3
37 .Os
38 .Sh NAME
39 .Nm printf , fprintf , sprintf , snprintf , asprintf ,
40 .Nm vprintf , vfprintf, vsprintf , vsnprintf , vasprintf
41 .Nd formatted output conversion
42 .Sh LIBRARY
43 .Lb libc
44 .Sh SYNOPSIS
45 .In stdio.h
46 .Ft int
47 .Fn printf "const char * restrict format" ...
48 .Ft int
49 .Fn fprintf "FILE * restrict stream" "const char * restrict format" ...
50 .Ft int
51 .Fn sprintf "char * restrict str" "const char * restrict format" ...
52 .Ft int
53 .Fn snprintf "char * restrict str" "size_t size" "const char * restrict format" ...
54 .Ft int
55 .Fn asprintf "char **ret" "const char *format" ...
56 .In stdarg.h
57 .Ft int
58 .Fn vprintf "const char * restrict format" "va_list ap"
59 .Ft int
60 .Fn vfprintf "FILE * restrict stream" "const char * restrict format" "va_list ap"
61 .Ft int
62 .Fn vsprintf "char * restrict str" "const char * restrict format" "va_list ap"
63 .Ft int
64 .Fn vsnprintf "char * restrict str" "size_t size" "const char * restrict format" "va_list ap"
65 .Ft int
66 .Fn vasprintf "char **ret" "const char *format" "va_list ap"
67 .Sh DESCRIPTION
68 The
69 .Fn printf
70 family of functions produces output according to a
71 .Fa format
72 as described below.
73 The
74 .Fn printf
75 and
76 .Fn vprintf
77 functions
78 write output to
79 .Dv stdout ,
80 the standard output stream;
81 .Fn fprintf
82 and
83 .Fn vfprintf
84 write output to the given output
85 .Fa stream ;
86 .Fn sprintf ,
87 .Fn snprintf ,
88 .Fn vsprintf ,
89 and
90 .Fn vsnprintf
91 write to the character string
92 .Fa str ;
93 and
94 .Fn asprintf
95 and
96 .Fn vasprintf
97 dynamically allocate a new string with
98 .Xr malloc 3 .
99 .Pp
100 These functions write the output under the control of a
101 .Fa format
102 string that specifies how subsequent arguments
103 (or arguments accessed via the variable-length argument facilities of
104 .Xr stdarg 3 )
105 are converted for output.
106 .Pp
107 These functions return the number of characters printed
108 (not including the trailing
109 .Ql \e0
110 used to end output to strings) or a negative value if an output error occurs,
111 except for
112 .Fn snprintf
113 and
114 .Fn vsnprintf ,
115 which return the number of characters that would have been printed if the
116 .Fa size
117 were unlimited
118 (again, not including the final
119 .Ql \e0 ) .
120 .Pp
121 The
122 .Fn asprintf
123 and
124 .Fn vasprintf
125 functions
126 set
127 .Fa *ret
128 to be a pointer to a buffer sufficiently large to hold the formatted string.
129 This pointer should be passed to
130 .Xr free 3
131 to release the allocated storage when it is no longer needed.
132 If sufficient space cannot be allocated,
133 .Fn asprintf
134 and
135 .Fn vasprintf
136 will return \-1 and set
137 .Fa ret
138 to be a
139 .Dv NULL
140 pointer.
141 .Pp
142 The
143 .Fn snprintf
144 and
145 .Fn vsnprintf
146 functions
147 will write at most
148 .Fa size Ns \-1
149 of the characters printed into the output string
150 (the
151 .Fa size Ns 'th
152 character then gets the terminating
153 .Ql \e0 ) ;
154 if the return value is greater than or equal to the
155 .Fa size
156 argument, the string was too short
157 and some of the printed characters were discarded.
158 The output is always null-terminated.
159 .Pp
160 The
161 .Fn sprintf
162 and
163 .Fn vsprintf
164 functions
165 effectively assume an infinite
166 .Fa size .
167 .Pp
168 The format string is composed of zero or more directives:
169 ordinary
170 .\" multibyte
171 characters (not
172 .Cm % ) ,
173 which are copied unchanged to the output stream;
174 and conversion specifications, each of which results
175 in fetching zero or more subsequent arguments.
176 Each conversion specification is introduced by
177 the
178 .Cm %
179 character.
180 The arguments must correspond properly (after type promotion)
181 with the conversion specifier.
182 After the
183 .Cm % ,
184 the following appear in sequence:
185 .Bl -bullet
186 .It
187 An optional field, consisting of a decimal digit string followed by a
188 .Cm $ ,
189 specifying the next argument to access.
190 If this field is not provided, the argument following the last
191 argument accessed will be used.
192 Arguments are numbered starting at
193 .Cm 1 .
194 If unaccessed arguments in the format string are interspersed with ones that
195 are accessed the results will be indeterminate.
196 .It
197 Zero or more of the following flags:
198 .Bl -tag -width ".So \  Sc (space)"
199 .It Sq Cm #
200 The value should be converted to an
201 .Dq alternate form .
202 For
203 .Cm c , d , i , n , p , s ,
204 and
205 .Cm u
206 conversions, this option has no effect.
207 For
208 .Cm o
209 conversions, the precision of the number is increased to force the first
210 character of the output string to a zero (except if a zero value is printed
211 with an explicit precision of zero).
212 For
213 .Cm x
214 and
215 .Cm X
216 conversions, a non-zero result has the string
217 .Ql 0x
218 (or
219 .Ql 0X
220 for
221 .Cm X
222 conversions) prepended to it.
223 For
224 .Cm a , A , e , E , f , F , g ,
225 and
226 .Cm G
227 conversions, the result will always contain a decimal point, even if no
228 digits follow it (normally, a decimal point appears in the results of
229 those conversions only if a digit follows).
230 For
231 .Cm g
232 and
233 .Cm G
234 conversions, trailing zeros are not removed from the result as they
235 would otherwise be.
236 .It So Cm 0 Sc (zero)
237 Zero padding.
238 For all conversions except
239 .Cm n ,
240 the converted value is padded on the left with zeros rather than blanks.
241 If a precision is given with a numeric conversion
242 .Cm ( d , i , o , u , i , x ,
243 and
244 .Cm X ) ,
245 the
246 .Cm 0
247 flag is ignored.
248 .It Sq Cm \-
249 A negative field width flag;
250 the converted value is to be left adjusted on the field boundary.
251 Except for
252 .Cm n
253 conversions, the converted value is padded on the right with blanks,
254 rather than on the left with blanks or zeros.
255 A
256 .Cm \-
257 overrides a
258 .Cm 0
259 if both are given.
260 .It So "\ " Sc (space)
261 A blank should be left before a positive number
262 produced by a signed conversion
263 .Cm ( a , A , d , e , E , f , F , g , G ,
264 or
265 .Cm i ) .
266 .It Sq Cm +
267 A sign must always be placed before a
268 number produced by a signed conversion.
269 A
270 .Cm +
271 overrides a space if both are used.
272 .It Sq Cm '
273 Decimal conversions
274 .Cm ( d , u ,
275 or
276 .Cm i )
277 or the integral portion of a floating point conversion
278 .Cm ( f
279 or
280 .Cm F )
281 should be grouped and separated by thousands using
282 the non-monetary separator returned by
283 .Xr localeconv 3 .
284 .El
285 .It
286 An optional decimal digit string specifying a minimum field width.
287 If the converted value has fewer characters than the field width, it will
288 be padded with spaces on the left (or right, if the left-adjustment
289 flag has been given) to fill out
290 the field width.
291 .It
292 An optional precision, in the form of a period
293 .Cm \&.
294 followed by an
295 optional digit string.
296 If the digit string is omitted, the precision is taken as zero.
297 This gives the minimum number of digits to appear for
298 .Cm d , i , o , u , x ,
299 and
300 .Cm X
301 conversions, the number of digits to appear after the decimal-point for
302 .Cm a , A , e , E , f ,
303 and
304 .Cm F
305 conversions, the maximum number of significant digits for
306 .Cm g
307 and
308 .Cm G
309 conversions, or the maximum number of characters to be printed from a
310 string for
311 .Cm s
312 conversions.
313 .It
314 An optional length modifier, that specifies the size of the argument.
315 The following length modifiers are valid for the
316 .Cm d , i , n , o , u , x ,
317 or
318 .Cm X
319 conversion:
320 .Bl -column ".Cm q Em (deprecated)" ".Vt signed char" ".Vt unsigned long long" ".Vt long long *"
321 .It Sy Modifier Ta Cm d , i Ta Cm o , u , x , X Ta Cm n
322 .It Cm hh Ta Vt "signed char" Ta Vt "unsigned char" Ta Vt "signed char *"
323 .It Cm h Ta Vt short Ta Vt "unsigned short" Ta Vt "short *"
324 .It Cm l No (ell) Ta Vt long Ta Vt "unsigned long" Ta Vt "long *"
325 .It Cm ll No (ell ell) Ta Vt "long long" Ta Vt "unsigned long long" Ta Vt "long long *"
326 .It Cm j Ta Vt intmax_t Ta Vt uintmax_t Ta Vt "intmax_t *"
327 .It Cm t Ta Vt ptrdiff_t Ta (see note) Ta Vt "ptrdiff_t *"
328 .It Cm z Ta (see note) Ta Vt size_t Ta (see note)
329 .It Cm q Em (deprecated) Ta Vt quad_t Ta Vt u_quad_t Ta Vt "quad_t *"
330 .El
331 .Pp
332 Note:
333 the
334 .Cm t
335 modifier, when applied to a
336 .Cm o , u , x ,
337 or
338 .Cm X
339 conversion, indicates that the argument is of an unsigned type
340 equivalent in size to a
341 .Vt ptrdiff_t .
342 The
343 .Cm z
344 modifier, when applied to a
345 .Cm d
346 or
347 .Cm i
348 conversion, indicates that the argument is of a signed type equivalent in
349 size to a
350 .Vt size_t .
351 Similarly, when applied to an
352 .Cm n
353 conversion, it indicates that the argument is a pointer to a signed type
354 equivalent in size to a
355 .Vt size_t .
356 .Pp
357 The following length modifier is valid for the
358 .Cm a , A , e , E , f , F , g ,
359 or
360 .Cm G
361 conversion:
362 .Bl -column ".Sy Modifier" ".Cm a , A , e , E , f , F , g , G"
363 .It Sy Modifier Ta Cm a , A , e , E , f , F , g , G
364 .It Cm l No (ell) Ta Vt double
365 (ignored, same behavior as without it)
366 .It Cm L Ta Vt "long double"
367 .El
368 .Pp
369 The following length modifier is valid for the
370 .Cm c
371 or
372 .Cm s
373 conversion:
374 .Bl -column ".Sy Modifier" ".Vt wint_t" ".Vt wchar_t *"
375 .It Sy Modifier Ta Cm c Ta Cm s
376 .It Cm l No (ell) Ta Vt wint_t Ta Vt "wchar_t *"
377 .El
378 .It
379 A character that specifies the type of conversion to be applied.
380 .El
381 .Pp
382 A field width or precision, or both, may be indicated by
383 an asterisk
384 .Ql *
385 or an asterisk followed by one or more decimal digits and a
386 .Ql $
387 instead of a
388 digit string.
389 In this case, an
390 .Vt int
391 argument supplies the field width or precision.
392 A negative field width is treated as a left adjustment flag followed by a
393 positive field width; a negative precision is treated as though it were
394 missing.
395 If a single format directive mixes positional
396 .Pq Li nn$
397 and non-positional arguments, the results are undefined.
398 .Pp
399 The conversion specifiers and their meanings are:
400 .Bl -tag -width ".Cm diouxX"
401 .It Cm diouxX
402 The
403 .Vt int
404 (or appropriate variant) argument is converted to signed decimal
405 .Cm ( d
406 and
407 .Cm i ) ,
408 unsigned octal
409 .Pq Cm o ,
410 unsigned decimal
411 .Pq Cm u ,
412 or unsigned hexadecimal
413 .Cm ( x
414 and
415 .Cm X )
416 notation.
417 The letters
418 .Dq Li abcdef
419 are used for
420 .Cm x
421 conversions; the letters
422 .Dq Li ABCDEF
423 are used for
424 .Cm X
425 conversions.
426 The precision, if any, gives the minimum number of digits that must
427 appear; if the converted value requires fewer digits, it is padded on
428 the left with zeros.
429 .It Cm DOU
430 The
431 .Vt "long int"
432 argument is converted to signed decimal, unsigned octal, or unsigned
433 decimal, as if the format had been
434 .Cm ld , lo ,
435 or
436 .Cm lu
437 respectively.
438 These conversion characters are deprecated, and will eventually disappear.
439 .It Cm eE
440 The
441 .Vt double
442 argument is rounded and converted in the style
443 .Sm off
444 .Oo \- Oc Ar d Li \&. Ar ddd Li e \\*[Pm] Ar dd
445 .Sm on
446 where there is one digit before the
447 decimal-point character
448 and the number of digits after it is equal to the precision;
449 if the precision is missing,
450 it is taken as 6; if the precision is
451 zero, no decimal-point character appears.
452 An
453 .Cm E
454 conversion uses the letter
455 .Ql E
456 (rather than
457 .Ql e )
458 to introduce the exponent.
459 The exponent always contains at least two digits; if the value is zero,
460 the exponent is 00.
461 .Pp
462 For
463 .Cm a , A , e , E , f , F , g ,
464 and
465 .Cm G
466 conversions, positive and negative infinity are represented as
467 .Li inf
468 and
469 .Li -inf
470 respectively when using the lowercase conversion character, and
471 .Li INF
472 and
473 .Li -INF
474 respectively when using the uppercase conversion character.
475 Similarly, NaN is represented as
476 .Li nan
477 when using the lowercase conversion, and
478 .Li NAN
479 when using the uppercase conversion.
480 .It Cm fF
481 The
482 .Vt double
483 argument is rounded and converted to decimal notation in the style
484 .Sm off
485 .Oo \- Oc Ar ddd Li \&. Ar ddd ,
486 .Sm on
487 where the number of digits after the decimal-point character
488 is equal to the precision specification.
489 If the precision is missing, it is taken as 6; if the precision is
490 explicitly zero, no decimal-point character appears.
491 If a decimal point appears, at least one digit appears before it.
492 .It Cm gG
493 The
494 .Vt double
495 argument is converted in style
496 .Cm f
497 or
498 .Cm e
499 (or
500 .Cm F
501 or
502 .Cm E
503 for
504 .Cm G
505 conversions).
506 The precision specifies the number of significant digits.
507 If the precision is missing, 6 digits are given; if the precision is zero,
508 it is treated as 1.
509 Style
510 .Cm e
511 is used if the exponent from its conversion is less than \-4 or greater than
512 or equal to the precision.
513 Trailing zeros are removed from the fractional part of the result; a
514 decimal point appears only if it is followed by at least one digit.
515 .It Cm aA
516 The
517 .Vt double
518 argument is rounded and converted to hexadecimal notation in the style
519 .Sm off
520 .Oo \- Oc Li 0x Ar h Li \&. Ar hhhp Oo \\*[Pm] Oc Ar d ,
521 .Sm on
522 where the number of digits after the hexadecimal-point character
523 is equal to the precision specification.
524 If the precision is missing, it is taken as enough to represent
525 the floating-point number exactly, and no rounding occurs.
526 If the precision is zero, no hexadecimal-point character appears.
527 The
528 .Cm p
529 is a literal character
530 .Ql p ,
531 and the exponent consists of a positive or negative sign
532 followed by a decimal number representing an exponent of 2.
533 The
534 .Cm A
535 conversion uses the prefix
536 .Dq Li 0X
537 (rather than
538 .Dq Li 0x ) ,
539 the letters
540 .Dq Li ABCDEF
541 (rather than
542 .Dq Li abcdef )
543 to represent the hex digits, and the letter
544 .Ql P
545 (rather than
546 .Ql p )
547 to separate the mantissa and exponent.
548 .Pp
549 Note that there may be multiple valid ways to represent floating-point
550 numbers in this hexadecimal format.
551 For example,
552 .Li 0x3.24p+0 , 0x6.48p-1
553 and
554 .Li 0xc.9p-2
555 are all equivalent.
556 The format chosen depends on the internal representation of the
557 number, but the implementation guarantees that the length of the
558 mantissa will be minimized.
559 Zeroes are always represented with a mantissa of 0 (preceded by a
560 .Ql -
561 if appropriate) and an exponent of
562 .Li +0 .
563 .It Cm C
564 Treated as
565 .Cm c
566 with the
567 .Cm l
568 (ell) modifier.
569 .It Cm c
570 The
571 .Vt int
572 argument is converted to an
573 .Vt "unsigned char" ,
574 and the resulting character is written.
575 .Pp
576 If the
577 .Cm l
578 (ell) modifier is used, the
579 .Vt wint_t
580 argument shall be converted to a
581 .Vt wchar_t ,
582 and the (potentially multi-byte) sequence representing the
583 single wide character is written, including any shift sequences.
584 If a shift sequence is used, the shift state is also restored
585 to the original state after the character.
586 .It Cm S
587 Treated as
588 .Cm s
589 with the
590 .Cm l
591 (ell) modifier.
592 .It Cm s
593 The
594 .Vt "char *"
595 argument is expected to be a pointer to an array of character type (pointer
596 to a string).
597 Characters from the array are written up to (but not including)
598 a terminating
599 .Dv NUL
600 character;
601 if a precision is specified, no more than the number specified are
602 written.
603 If a precision is given, no null character
604 need be present; if the precision is not specified, or is greater than
605 the size of the array, the array must contain a terminating
606 .Dv NUL
607 character.
608 .Pp
609 If the
610 .Cm l
611 (ell) modifier is used, the
612 .Vt "wchar_t *"
613 argument is expected to be a pointer to an array of wide characters
614 (pointer to a wide string).
615 For each wide character in the string, the (potentially multi-byte)
616 sequence representing the
617 wide character is written, including any shift sequences.
618 If any shift sequence is used, the shift state is also restored
619 to the original state after the string.
620 Wide characters from the array are written up to (but not including)
621 a terminating wide
622 .Dv NUL
623 character;
624 if a precision is specified, no more than the number of bytes specified are
625 written (including shift sequences).
626 Partial characters are never written.
627 If a precision is given, no null character
628 need be present; if the precision is not specified, or is greater than
629 the number of bytes required to render the multibyte representation of
630 the string, the array must contain a terminating wide
631 .Dv NUL
632 character.
633 .It Cm p
634 The
635 .Vt "void *"
636 pointer argument is printed in hexadecimal (as if by
637 .Ql %#x
638 or
639 .Ql %#lx ) .
640 .It Cm n
641 The number of characters written so far is stored into the
642 integer indicated by the
643 .Vt "int *"
644 (or variant) pointer argument.
645 No argument is converted.
646 .It Cm %
647 A
648 .Ql %
649 is written.
650 No argument is converted.
651 The complete conversion specification
652 is
653 .Ql %% .
654 .El
655 .Pp
656 The decimal point
657 character is defined in the program's locale (category
658 .Dv LC_NUMERIC ) .
659 .Pp
660 In no case does a non-existent or small field width cause truncation of
661 a numeric field; if the result of a conversion is wider than the field
662 width, the
663 field is expanded to contain the conversion result.
664 .Sh EXAMPLES
665 To print a date and time in the form
666 .Dq Li "Sunday, July 3, 10:02" ,
667 where
668 .Fa weekday
669 and
670 .Fa month
671 are pointers to strings:
672 .Bd -literal -offset indent
673 #include <stdio.h>
674 fprintf(stdout, "%s, %s %d, %.2d:%.2d\en",
675         weekday, month, day, hour, min);
676 .Ed
677 .Pp
678 To print \*(Pi
679 to five decimal places:
680 .Bd -literal -offset indent
681 #include <math.h>
682 #include <stdio.h>
683 fprintf(stdout, "pi = %.5f\en", 4 * atan(1.0));
684 .Ed
685 .Pp
686 To allocate a 128 byte string and print into it:
687 .Bd -literal -offset indent
688 #include <stdio.h>
689 #include <stdlib.h>
690 #include <stdarg.h>
691 char *newfmt(const char *fmt, ...)
692 {
693         char *p;
694         va_list ap;
695         if ((p = malloc(128)) == NULL)
696                 return (NULL);
697         va_start(ap, fmt);
698         (void) vsnprintf(p, 128, fmt, ap);
699         va_end(ap);
700         return (p);
701 }
702 .Ed
703 .Sh SECURITY CONSIDERATIONS
704 The
705 .Fn sprintf
706 and
707 .Fn vsprintf
708 functions are easily misused in a manner which enables malicious users
709 to arbitrarily change a running program's functionality through
710 a buffer overflow attack.
711 Because
712 .Fn sprintf
713 and
714 .Fn vsprintf
715 assume an infinitely long string,
716 callers must be careful not to overflow the actual space;
717 this is often hard to assure.
718 For safety, programmers should use the
719 .Fn snprintf
720 interface instead.
721 For example:
722 .Bd -literal
723 void
724 foo(const char *arbitrary_string, const char *and_another)
725 {
726         char onstack[8];
727
728 #ifdef BAD
729         /*
730          * This first sprintf is bad behavior.  Do not use sprintf!
731          */
732         sprintf(onstack, "%s, %s", arbitrary_string, and_another);
733 #else
734         /*
735          * The following two lines demonstrate better use of
736          * snprintf().
737          */
738         snprintf(onstack, sizeof(onstack), "%s, %s", arbitrary_string,
739             and_another);
740 #endif
741 }
742 .Ed
743 .Pp
744 The
745 .Fn printf
746 and
747 .Fn sprintf
748 family of functions are also easily misused in a manner
749 allowing malicious users to arbitrarily change a running program's
750 functionality by either causing the program
751 to print potentially sensitive data
752 .Dq "left on the stack" ,
753 or causing it to generate a memory fault or bus error
754 by dereferencing an invalid pointer.
755 .Pp
756 .Cm %n
757 can be used to write arbitrary data to potentially carefully-selected
758 addresses.
759 Programmers are therefore strongly advised to never pass untrusted strings
760 as the
761 .Fa format
762 argument, as an attacker can put format specifiers in the string
763 to mangle your stack,
764 leading to a possible security hole.
765 This holds true even if the string was built using a function like
766 .Fn snprintf ,
767 as the resulting string may still contain user-supplied conversion specifiers
768 for later interpolation by
769 .Fn printf .
770 .Pp
771 Always use the proper secure idiom:
772 .Pp
773 .Dl "snprintf(buffer, sizeof(buffer), \*q%s\*q, string);"
774 .Sh ERRORS
775 In addition to the errors documented for the
776 .Xr write 2
777 system call, the
778 .Fn printf
779 family of functions may fail if:
780 .Bl -tag -width Er
781 .It Bq Er EILSEQ
782 An invalid wide character code was encountered.
783 .It Bq Er ENOMEM
784 Insufficient storage space is available.
785 .El
786 .Sh SEE ALSO
787 .Xr printf 1 ,
788 .Xr fmtcheck 3 ,
789 .Xr scanf 3 ,
790 .Xr setlocale 3 ,
791 .Xr wprintf 3
792 .Sh STANDARDS
793 Subject to the caveats noted in the
794 .Sx BUGS
795 section below, the
796 .Fn fprintf ,
797 .Fn printf ,
798 .Fn sprintf ,
799 .Fn vprintf ,
800 .Fn vfprintf ,
801 and
802 .Fn vsprintf
803 functions
804 conform to
805 .St -ansiC
806 and
807 .St -isoC-99 .
808 With the same reservation, the
809 .Fn snprintf
810 and
811 .Fn vsnprintf
812 functions conform to
813 .St -isoC-99 .
814 .Sh HISTORY
815 The functions
816 .Fn asprintf
817 and
818 .Fn vasprintf
819 first appeared in the
820 .Tn GNU C
821 library.
822 These were implemented by
823 .An Peter Wemm Aq peter@FreeBSD.org
824 in
825 .Fx 2.2 ,
826 but were later replaced with a different implementation
827 from
828 .An Todd C. Miller Aq Todd.Miller@courtesan.com
829 for
830 .Ox 2.3 .
831 .Sh BUGS
832 The conversion formats
833 .Cm \&%D , \&%O ,
834 and
835 .Cm %U
836 are not standard and
837 are provided only for backward compatibility.
838 The effect of padding the
839 .Cm %p
840 format with zeros (either by the
841 .Cm 0
842 flag or by specifying a precision), and the benign effect (i.e., none)
843 of the
844 .Cm #
845 flag on
846 .Cm %n
847 and
848 .Cm %p
849 conversions, as well as other
850 nonsensical combinations such as
851 .Cm %Ld ,
852 are not standard; such combinations
853 should be avoided.
854 .Pp
855 The
856 .Nm
857 family of functions do not correctly handle multibyte characters in the
858 .Fa format
859 argument.