summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/printf.3
blob: 3ca5645f9ffd82d6054570e31b797b6e79f92e39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
.\"	$OpenBSD: printf.3,v 1.86 2020/07/10 14:43:18 schwarze Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\"	The Regents of the University of California.  All rights reserved.
.\"
.\" This code is derived from software contributed to Berkeley by
.\" Chris Torek and the American National Standards Committee X3,
.\" on Information Processing Systems.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
.\"    may be used to endorse or promote products derived from this software
.\"    without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\"     @(#)printf.3	8.1 (Berkeley) 6/4/93
.\"
.Dd $Mdocdate: July 10 2020 $
.Dt PRINTF 3
.Os
.Sh NAME
.Nm printf ,
.Nm fprintf ,
.Nm sprintf ,
.Nm snprintf ,
.Nm asprintf ,
.Nm dprintf ,
.Nm vprintf ,
.Nm vfprintf ,
.Nm vsprintf ,
.Nm vsnprintf ,
.Nm vasprintf ,
.Nm vdprintf
.Nd formatted output conversion
.Sh SYNOPSIS
.In stdio.h
.Ft int
.Fn printf "const char *format" ...
.Ft int
.Fn fprintf "FILE *stream" "const char *format" ...
.Ft int
.Fn sprintf "char *str" "const char *format" ...
.Ft int
.Fn snprintf "char *str" "size_t size" "const char *format" ...
.Ft int
.Fn asprintf "char **ret" "const char *format" ...
.Ft int
.Fn dprintf "int fd" "const char * restrict format" ...
.In stdarg.h
.In stdio.h
.Ft int
.Fn vprintf "const char *format" "va_list ap"
.Ft int
.Fn vfprintf "FILE *stream" "const char *format" "va_list ap"
.Ft int
.Fn vsprintf "char *str" "const char *format" "va_list ap"
.Ft int
.Fn vsnprintf "char *str" "size_t size" "const char *format" "va_list ap"
.Ft int
.Fn vasprintf "char **ret" "const char *format" "va_list ap"
.Ft int
.Fn vdprintf "int fd" "const char * restrict format" "va_list ap"
.Sh DESCRIPTION
The
.Fn printf
family of functions produce output according to the given
.Fa format
as described below.
This format may contain
.Dq conversion specifiers ;
the results of such conversions, if any, depend on the arguments
following the
.Fa format
string.
.Pp
The
.Fn printf
and
.Fn vprintf
functions write output to the standard output stream,
.Em stdout ;
.Fn fprintf
and
.Fn vfprintf
write output to the supplied stream pointer
.Fa stream ;
.Fn dprintf
and
.Fn vdprintf
write output to the given file descriptor;
.Fn sprintf ,
.Fn snprintf ,
.Fn vsprintf ,
and
.Fn vsnprintf
write to the character string
.Fa str ;
.Fn asprintf
and
.Fn vasprintf
write to a dynamically allocated string that is stored in
.Fa ret .
.Pp
These functions write the output under the control of a
.Fa format
string that specifies how subsequent arguments
(or arguments accessed via the variable-length argument facilities of
.Xr va_start 3 )
are converted for output.
.Pp
.Fn snprintf
and
.Fn vsnprintf
write at most
.Fa size Ns \-1
characters to
.Fa str ,
followed by a terminating
.Ql \e0 .
If
.Fa size
is zero,
no characters are written and
.Fa str
may be a
.Dv NULL
pointer.
.Pp
.Fn sprintf
and
.Fn vsprintf
effectively assume an infinite
.Fa size ;
their use is not recommended.
.Pp
The format string is composed of zero or more directives:
ordinary
.\" multibyte
characters (not
.Cm % ) ,
which are copied unchanged to the output stream,
and conversion specifications, each of which results
in fetching zero or more subsequent arguments.
The arguments must correspond properly (after type promotion)
with the conversion specifiers.
.Pp
The overall syntax of a conversion specification is:
.Bd -filled -offset indent
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Ar flags
.Op Ar width
.Op . Ar precision
.Op Ar size
.Ar conversion
.Sm on
.Ed
.Pp
Not all combinations of these parts are meaningful;
see the description of the individual
.Ar conversion
specifiers for details.
.Pp
The parts of a conversion specification are as follows:
.Bl -tag -width Ds
.It Cm %
A literal percent character begins a conversion specification.
.It Ar argno Ns Cm $
An unsigned decimal digit string followed by a dollar character
specifies the index of the next argument to access.
By default, the argument following the last argument accessed is used.
Arguments are numbered starting at 1.
.It Ar flags
Zero or more of the following flag characters can be given:
.Bl -tag -width 11n
.It Cm # Pq hash
Use an alternate form for the output.
The effect differs depending on the conversion specifier.
.It So \~ Sc Pq space
For signed conversions, print a space character before a positive number.
.It Cm + Pq plus
For signed conversions, always print a sign before the number,
even if it is positive.
This overrides the space flag if both are specified.
.It Cm 0 Pq zero
Pad numbers with leading zeros instead of space characters
to fill the field
.Ar width .
This flag is ignored if the
.Ar precision
modifier is also given, which in this case specifies
.Ar mindigits .
.It Cm \- Pq minus
Left adjust: pad to the field
.Ar width
with space characters on the right rather than on the left.
This overrides the
.Sq Cm 0
flag if both are specified.
.El
.It Ar width
An unsigned decimal digit string specifies a minimum field width in bytes.
Unless the
.Sq Cm 0
or
.Sq Cm \-
flag is given, the value is right adjusted in the field and
padded with space characters on the left.
By default, no padding is added.
In no case does a non-existent or small field
.Ar width
cause truncation of a field; if the result of a conversion is wider
than the field width, the field is expanded to contain the conversion
result.
.It Pf . Ar precision
The meaning of an unsigned decimal digit string prefixed with a
period character depends on the conversion specifier:
it provides the minimum number of digits for integer conversions,
of decimals for some floating point conversions and of significant
digits for others, or the maximum number of bytes to print for
string conversions.
.Pp
A field
.Ar width
or
.Ar precision ,
or both, may alternatively be indicated as
.Cm * Ns Op Ar argno Ns Cm $ ,
i.e. as an asterisk optionally followed
by an unsigned decimal digit string and a dollar sign.
In this case, an additional
.Vt int
argument supplies the field width or precision.
If a single conversion specification tries to use arguments
both with and without
.Ar argno Ns Cm $
modifiers, the result is undefined.
.It Ar size
An argument size modifier.
The syntax, the precise meaning, and the default size of the argument
depend on the following
.Ar conversion
character.
.It Ar conversion
Each conversion specification ends with a conversion specifier,
which is a single letter determining which argument type is expected
and how it is formatted.
.El
.Pp
The conversion specifiers are:
.Bl -tag -width Ds
.It Cm %a
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm #
.Op Cm \~ | +
.Op Cm \- | 0
.Op Ar width
.Op . Ar hexadecimals
.Op Cm L | l
.Cm a
.Sm on
.Pp
The
.Vt double
argument is converted to the hexadecimal notation
.Sm off
.Oo \- Oc Sy 0x No h.hhh Sy p No \(+-d
.Sm on
with one digit before the hexadecimal point.
If specified, the number is rounded to
.Ar hexadecimals
after the hexadecimal point; otherwise,
enough digits are printed to represent it exactly.
The hexadecimal point is only printed if at least one digit follows it
or if the
.Sq Cm #
flag is given.
.Pp
The exponent is expressed in base 2, not in base 16.
Consequently, there are multiple ways to represent a number in this format.
For example, 0x3.24p+0, 0x6.48p-1, and 0xc.9p-2 are all equivalent.
The format chosen depends on the internal representation of the
number, but the implementation guarantees that the length of the
mantissa is minimized.
Zeroes are always represented with a mantissa of
.Ql 0
(preceded by a sign if appropriate) and an exponent of
.Ql +0 .
.Pp
If the argument is infinity, it is converted to
.Ql [-]inf .
If the argument is not-a-number (NaN), it is converted to
.Ql [-]nan .
.Pp
.Cm %La
is similar to
.Cm %a
except that it takes an argument of
.Vt long double .
.Cm %la Pq ell a
is an alias for
.Cm %a .
.It Cm \&%A
Identical to
.Cm %a
except that upper case is used, i.e.\&
.Ql 0X
for the prefix,
.Ql 0123456789ABCDEF
for the digits,
.Ql P
to introduce the exponent,
and
.Ql [-]INF
and
.Ql [-]NAN
for infinity and not-a-number, respectively.
.It Cm %c
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm \-
.Op Ar width
.Cm c
.Sm on
.Pp
The
.Vt int
argument is converted to an
.Vt unsigned char ,
and the resulting single-byte character is written, with optional padding.
.It Cm %lc
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm \-
.Op Ar width
.Cm lc
.Sm on
.Pp
The
.Vt wint_t
argument is converted to a multibyte character according to the current
.Dv LC_CTYPE
.Xr locale 1 ,
and that character is written.
For example, under a UTF-8 locale on
.Ox ,
.Ql printf("%lc", 0x03c0)
writes the greek letter pi, whereas the same call fails
under the default POSIX locale.
Padding assures at least
.Ar width
bytes are printed; the number of characters printed may be smaller,
and the number of display columns occupied may be smaller or larger.
.It Cm %d
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm \~ | +
.Op Cm \- | 0
.Op Ar width
.Op . Ar mindigits
.Op Ar size
.Cm d
.Sm on
.Pp
The
.Vt int
argument is converted to signed decimal notation.
If specified, at least
.Ar mindigits
are printed, padding with leading zeros if needed.
The following are similar to
.Cm %d
except that they take an argument of a different size:
.Bl -column %hhd
.It Cm %hhd Ta Vt signed char
.It Cm %hd  Ta Vt signed short
.It Cm %d   Ta Vt signed int
.It Cm %ld  Ta Vt signed long Pq percent ell dee
.It Cm %lld Ta Vt signed long long Pq percent ell ell dee
.It Cm %jd  Ta Vt intmax_t
.It Cm %td  Ta Vt ptrdiff_t
.It Cm %zd  Ta Vt ssize_t
.It Cm %qd  Ta Vt quad_t Pq deprecated
.El
.It Cm \&%D
A deprecated alias for
.Cm %ld .
.It Cm %e
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm #
.Op Cm \~ | +
.Op Cm \- | 0
.Op Ar width
.Op . Ar decimals
.Op Cm L | l
.Cm e
.Sm on
.Pp
The
.Vt double
argument is rounded and converted to the scientific notation
.Pf [\-]d.dddddd Sy e Ns \(+-dd
with one digit before the decimal point and
.Ar decimals ,
or six digits by default, after it.
If
.Ar decimals
is zero and the
.Sq Cm #
flag is not given, the decimal point is omitted.
The exponent always contains at least two digits; if the value is zero,
the exponent is
.Ql +00 .
If the argument is infinity, it is converted to
.Ql [-]inf .
If the argument is not-a-number (NaN), it is converted to
.Ql [-]nan .
.Pp
.Cm %Le
is similar to
.Cm %e
except that it takes an argument of
.Vt long double .
.Cm %le Pq ell e
is an alias for
.Cm %e .
.It Cm \&%E
Identical to
.Cm %e
except that upper case is used, i.e.\&
.Ql E
instead of
.Ql e
to introduce the exponent and
.Ql [-]INF
and
.Ql [-]NAN
for infinity and not-a-number, respectively.
.It Cm %f
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm #
.Op Cm \~ | +
.Op Cm \- | 0
.Op Ar width
.Op . Ar decimals
.Op Cm L | l
.Cm f
.Sm on
.Pp
The
.Vt double
argument is rounded and converted to the decimal notation [\-]ddd.dddddd with
.Ar decimals ,
or six digits by default, after the decimal point.
If
.Ar decimals
is zero and the
.Sq Cm #
flag is not given, the decimal point is omitted.
If a decimal point appears, at least one digit appears before it.
If the argument is infinity, it is converted to
.Ql [-]inf .
If the argument is not-a-number (NaN), it is converted to
.Ql [-]nan .
.Pp
.Cm %Lf
is similar to
.Cm %f
except that it takes an argument of
.Vt long double .
.Cm %lf Pq ell eff
is an alias for
.Cm %f .
.It Cm \&%F
Identical to
.Cm %f
except that upper case is used, i.e.\&
.Ql [-]INF
and
.Ql [-]NAN
for infinity and not-a-number, respectively.
.It Cm %g
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm #
.Op Cm \~ | +
.Op Cm \- | 0
.Op Ar width
.Op . Ar significant
.Op Cm L | l
.Cm g
.Sm on
.Pp
The
.Vt double
argument is converted in style
.Cm %f
or
.Cm %e
.Pq general floating point notation
with
.Ar significant
digits, or six significant digits by default.
If
.Ar significant
is zero, one is used instead.
Style
.Cm %e
is used if the exponent from its conversion is less than \-4
or greater than or equal to
.Ar significant .
Unless the
.Sq Cm #
flag is given, trailing zeros are removed from the fractional
part of the result, and the decimal point only appears if it is
followed by at least one digit.
.Pp
.Cm %Lg
is similar to
.Cm %g
except that it takes an argument of
.Vt long double .
.Cm %lg Pq ell gee
is an alias for
.Cm %g .
.It Cm \&%G
Identical to
.Cm %g
except that upper case is used, i.e.\&
.Ql E
instead of
.Ql e
to introduce the exponent and
.Ql [-]INF
and
.Ql [-]NAN
for infinity and not-a-number, respectively.
.It Cm %i
An alias for
.Cm %d ,
supporting the same modifiers.
.It Cm %n
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Ar size
.Cm n
.Sm on
.Pp
The number of bytes written so far is stored into the signed integer
variable indicated by the pointer argument.
No argument is converted.
.Pp
Make sure the
.Ar size
modifier matches the type of the pointer passed:
.Bl -column %hhn
.It Cm %hhn Ta Vt signed char *
.It Cm %hn  Ta Vt signed short *
.It Cm %n   Ta Vt signed int *
.It Cm %ln  Ta Vt signed long * Pq percent ell dee
.It Cm %lln Ta Vt signed long long * Pq percent ell ell dee
.It Cm %jn  Ta Vt intmax_t *
.It Cm %tn  Ta Vt ptrdiff_t *
.It Cm %zn  Ta Vt ssize_t *
.It Cm %qn  Ta Vt quad_t * Pq deprecated
.El
.It Cm %o
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm #
.Op Cm \- | 0
.Op Ar width
.Op . Ar mindigits
.Op Ar size
.Cm o
.Sm on
.Pp
Similar to
.Cm %u
except that the
.Vt unsigned int
argument is converted to unsigned octal notation.
If the
.Sq Cm #
flag is given,
.Ar mindigits
is increased such that the first digit printed is a zero,
except if a zero value is printed with an explicit
.Ar mindigits
of zero.
.It Cm \&%O
A deprecated alias for
.Cm %lo .
.It Cm %p
The
.Vt void *
pointer argument is printed in hexadecimal, similar to
.Cm %#x
or
.Cm %#lx
depending on the size of pointers.
.It Cm %s
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm \-
.Op Ar width
.Op . Ar maxbytes
.Cm s
.Sm on
.Pp
Characters from the
.Vt char * Pq string
argument are written up to (but not including) a terminating NUL character.
If
.Ar maxbytes
is specified, at most
.Ar maxbytes
bytes are written; in that case, no NUL character needs to be present.
.It Cm %ls
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm \-
.Op Ar width
.Op . Ar maxbytes
.Cm ls
.Sm on
.Pp
The
.Vt wchar_t * Pq wide character string
argument is converted to a multibyte character string
according to the current
.Dv LC_CTYPE
.Xr locale 1
up to (but not including) a terminating NUL character,
and that multibyte character string is written.
If
.Ar maxbytes
is specified, at most
.Ar maxbytes
bytes are written; in that case, no NUL character needs to be present.
If a multibyte character does not fit into the rest of
.Ar maxbytes ,
it is omitted together with the rest of the argument string;
partial characters are not written.
Locale dependency and padding work in the same way as for
.Cm %lc .
.It Cm %u
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm \- | 0
.Op Ar width
.Op . Ar mindigits
.Op Ar size
.Cm u
.Sm on
.Pp
The
.Vt unsigned int
argument is converted to unsigned decimal notation.
If specified, at least
.Ar mindigits
are printed, padding with leading zeros if needed.
The following are similar to
.Cm %u
except that they take an argument of a different size:
.Bl -column %hhu
.It Cm %hhu Ta Vt unsigned char
.It Cm %hu  Ta Vt unsigned short
.It Cm %u   Ta Vt unsigned int
.It Cm %lu  Ta Vt unsigned long Pq percent ell u
.It Cm %llu Ta Vt unsigned long long Pq percent ell ell u
.It Cm %ju  Ta Vt uintmax_t
.It Cm %tu  Ta unsigned type of same size as Vt ptrdiff_t
.It Cm %zu  Ta Vt size_t
.It Cm %qu  Ta Vt u_quad_t Pq deprecated
.El
.It Cm \&%U
A deprecated alias for
.Cm %lu .
.It Cm %x
.Sm off
.Cm %
.Op Ar argno Cm $
.Op Cm #
.Op Cm \- | 0
.Op Ar width
.Op . Ar mindigits
.Op Ar size
.Cm x
.Sm on
.Pp
Similar to
.Cm %u
except that the
.Vt unsigned int
argument is converted to unsigned hexadecimal notation using the digits
.Ql 0123456789abcdef .
If the
.Sq Cm #
flag is given, the string
.Ql 0x
is prepended unless the value is zero.
.It Cm \&%X
Identical to
.Cm %x
except that upper case is used, i.e.\&
.Ql 0X
for the optional prefix and
.Ql 0123456789ABCDEF
for the digits.
.It Cm %%
A single percent sign
.Pq Ql %
is written.
No argument is converted.
The complete conversion specification is
.Ql %% ;
no modifiers can be inserted between the two percent signs.
.El
.Sh RETURN VALUES
For all these functions if an output or encoding error occurs, a value
less than 0 is returned.
.Pp
The
.Fn printf ,
.Fn dprintf ,
.Fn fprintf ,
.Fn sprintf ,
.Fn vprintf ,
.Fn vdprintf ,
.Fn vfprintf ,
.Fn vsprintf ,
.Fn asprintf ,
and
.Fn vasprintf
functions
return the number of bytes printed
(not including the trailing
.Ql \e0
used to end output to strings).
.Pp
The
.Fn snprintf
and
.Fn vsnprintf
functions return the number of bytes that would have
been output if the
.Fa size
were unlimited
.Po
again, not including the final
.Ql \e0
.Pc .
A return value greater than or equal to the
.Fa size
argument indicates that the string was too small and some characters
were discarded.
.Pp
The
.Fn asprintf
and
.Fn vasprintf
functions return the number of bytes that were output
to the newly allocated string
(excluding the final
.Ql \e0 ) .
A pointer to the newly allocated string is returned in
.Fa ret ;
it should be passed to
.Xr free 3
to release the allocated storage
when it is no longer needed.
If sufficient space cannot be allocated or some other error occurs,
these functions return \-1.
The value of
.Fa ret
in this situation is implementation-dependent.
On
.Ox ,
.Fa ret
is set to the
.Dv NULL
pointer, but other implementations may leave
.Fa ret
unchanged.
.Sh ENVIRONMENT
.Bl -tag -width LC_CTYPE
.It Ev LC_CTYPE
The character encoding
.Xr locale 1 .
It decides which
.Vt wchar_t
values represent valid wide characters for the
.Cm %lc
and
.Cm %ls
conversion specifiers and how they are encoded into multibyte characters.
If unset or set to
.Qq C ,
.Qq POSIX ,
or an unsupported value,
.Cm %lc
and
.Cm %ls
only work correctly for ASCII characters
and fail for arguments greater than 255.
.El
.Sh EXAMPLES
To print a date and time in the form `Sunday, July 3, 10:02',
where
.Va weekday
and
.Va month
are pointers to strings:
.Bd -literal -offset indent
#include <stdio.h>

fprintf(stdout, "%s, %s %d, %.2d:%.2d\en",
    weekday, month, day, hour, min);
.Ed
.Pp
To print \*(Pi
to five decimal places:
.Bd -literal -offset indent
#include <math.h>
#include <stdio.h>

fprintf(stdout, "pi = %.5f\en", 4 * atan(1.0));
.Ed
.Pp
To allocate a 128-byte string and print into it:
.Bd -literal -offset indent
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>

char *
newfmt(const char *fmt, ...)
{
	char *p;
	va_list ap;

	if ((p = malloc(128)) == NULL)
		return (NULL);
	va_start(ap, fmt);
	(void) vsnprintf(p, 128, fmt, ap);
	va_end(ap);
	return (p);
}
.Ed
.Sh ERRORS
In addition to the errors documented for the
.Xr write 2
system call, the
.Fn printf
family of functions may fail if:
.Bl -tag -width Er
.It Bq Er EILSEQ
An invalid wide character code was encountered.
.It Bq Er ENOMEM
Insufficient storage space is available.
.It Bq Er EOVERFLOW
The return value would be too large to be represented by an
.Vt int .
.El
.Sh SEE ALSO
.Xr printf 1 ,
.Xr scanf 3 ,
.Xr wprintf 3
.Sh STANDARDS
The
.Fn fprintf ,
.Fn printf ,
.Fn snprintf ,
.Fn sprintf ,
.Fn vfprintf ,
.Fn vprintf ,
.Fn vsnprintf ,
and
.Fn vsprintf
functions conform to
.St -isoC-99 .
The
.Fn dprintf
and
.Fn vdprintf
functions conform to
.St -p1003.1-2008 .
.Sh HISTORY
The predecessors
.Fn ftoa
and
.Fn itoa
first appeared in
.At v1 .
The function
.Fn printf
first appeared in
.At v2 ,
and
.Fn fprintf
and
.Fn sprintf
in
.At v7 .
.Pp
The functions
.Fn snprintf
and
.Fn vsnprintf
first appeared in
.Bx 4.4 .
.Pp
The functions
.Fn asprintf
and
.Fn vasprintf
first appeared in the GNU C library.
This implementation first appeared in
.Ox 2.3 .
.Pp
The functions
.Fn dprintf
and
.Fn vdprintf
first appeared in
.Ox 5.3 .
.Sh CAVEATS
The conversion formats
.Cm \&%D ,
.Cm \&%O ,
and
.Cm \&%U
are not standard and
are provided only for backward compatibility.
The effect of padding the
.Cm %p
format with zeros (either by the
.Sq Cm 0
flag or by specifying a precision), and the benign effect (i.e., none)
of the
.Sq Cm #
flag on
.Cm %n
and
.Cm %p
conversions, as well as other
nonsensical combinations such as
.Cm %Ld ,
are not standard; such combinations
should be avoided.
.Pp
Because
.Fn sprintf
and
.Fn vsprintf
assume an infinitely long string,
callers must be careful not to overflow the actual space;
this is often impossible to assure.
For safety, programmers should use the
.Fn snprintf
and
.Fn asprintf
family of interfaces instead.
Unfortunately, the
.Fn asprintf
interface is not available on all systems as it is not part of
.St -isoC-99 .
.Pp
It is important never to pass a string with user-supplied data as a
format without using
.Ql %s .
An attacker can put format specifiers in the string to mangle the stack,
leading to a possible security hole.
This holds true even if the string has been built
.Dq by hand
using a function like
.Fn snprintf ,
as the resulting string may still contain user-supplied conversion specifiers
for later interpolation by
.Fn printf .
.Pp
Be sure to use the proper secure idiom:
.Bd -literal -offset indent
int ret = snprintf(buffer, sizeof(buffer), "%s", string);
if (ret < 0 || ret >= sizeof(buffer))
	goto toolong;
.Ed
.Pp
There is no way for
.Fn printf
to know the size of each argument passed.
If positional arguments are used, care must be taken to ensure that all
parameters, up to the
last positionally specified parameter, are used in the format string.
This allows for the format string to be parsed for this information.
Failure to do this will mean the code is non-portable and liable to fail.
.Pp
On systems other than
.Ox ,
the
.Dv LC_NUMERIC
.Xr locale 1
category can cause erratic output; see CAVEATS in
.Xr setlocale 3
for details.