]> git.ipfire.org Git - thirdparty/glibc.git/blame - manual/stdio.texi
Remove useless comment from sysdeps/sparc/sparc32/dl-machine.h
[thirdparty/glibc.git] / manual / stdio.texi
CommitLineData
28f540f4 1@node I/O on Streams, Low-Level I/O, I/O Overview, Top
34992338 2@c %MENU% High-level, portable I/O facilities
28f540f4 3@chapter Input/Output on Streams
838e5ffe
UD
4@c fix an overfull:
5@tex
6\hyphenation{which-ever}
7@end tex
28f540f4
RM
8
9This chapter describes the functions for creating streams and performing
10input and output operations on them. As discussed in @ref{I/O
11Overview}, a stream is a fairly abstract, high-level concept
12representing a communications channel to a file, device, or process.
13
14@menu
15* Streams:: About the data type representing a stream.
19c3f208 16* Standard Streams:: Streams to the standard input and output
162ba701 17 devices are created for you.
28f540f4
RM
18* Opening Streams:: How to create a stream to talk to a file.
19* Closing Streams:: Close a stream when you are finished with it.
7b4161bb 20* Streams and Threads:: Issues with streams in threaded programs.
b5e73f56 21* Streams and I18N:: Streams in internationalized applications.
28f540f4
RM
22* Simple Output:: Unformatted output by characters and lines.
23* Character Input:: Unformatted input by characters and words.
24* Line Input:: Reading a line or a record from a stream.
25* Unreading:: Peeking ahead/pushing back input just read.
26* Block Input/Output:: Input and output operations on blocks of data.
27* Formatted Output:: @code{printf} and related functions.
28* Customizing Printf:: You can define new conversion specifiers for
162ba701 29 @code{printf} and friends.
28f540f4
RM
30* Formatted Input:: @code{scanf} and related functions.
31* EOF and Errors:: How you can tell if an I/O error happens.
460e040a 32* Error Recovery:: What you can do about errors.
28f540f4 33* Binary Streams:: Some systems distinguish between text files
162ba701 34 and binary files.
28f540f4 35* File Positioning:: About random-access streams.
f65fd747 36* Portable Positioning:: Random access on peculiar ISO C systems.
28f540f4
RM
37* Stream Buffering:: How to control buffering of streams.
38* Other Kinds of Streams:: Streams that do not necessarily correspond
162ba701 39 to an open file.
0501d603 40* Formatted Messages:: Print strictly formatted messages.
28f540f4
RM
41@end menu
42
43@node Streams
44@section Streams
45
46For historical reasons, the type of the C data structure that represents
47a stream is called @code{FILE} rather than ``stream''. Since most of
48the library functions deal with objects of type @code{FILE *}, sometimes
49the term @dfn{file pointer} is also used to mean ``stream''. This leads
50to unfortunate confusion over terminology in many books on C. This
51manual, however, is careful to use the terms ``file'' and ``stream''
52only in the technical sense.
53@cindex file pointer
54
55@pindex stdio.h
56The @code{FILE} type is declared in the header file @file{stdio.h}.
57
58@comment stdio.h
f65fd747 59@comment ISO
28f540f4
RM
60@deftp {Data Type} FILE
61This is the data type used to represent stream objects. A @code{FILE}
62object holds all of the internal state information about the connection
63to the associated file, including such things as the file position
64indicator and buffering information. Each stream also has error and
65end-of-file status indicators that can be tested with the @code{ferror}
66and @code{feof} functions; see @ref{EOF and Errors}.
67@end deftp
68
69@code{FILE} objects are allocated and managed internally by the
70input/output library functions. Don't try to create your own objects of
71type @code{FILE}; let the library do it. Your programs should
72deal only with pointers to these objects (that is, @code{FILE *} values)
73rather than the objects themselves.
6d52618b 74@c !!! should say that FILE's have "No user-serviceable parts inside."
28f540f4
RM
75
76@node Standard Streams
77@section Standard Streams
78@cindex standard streams
79@cindex streams, standard
80
81When the @code{main} function of your program is invoked, it already has
82three predefined streams open and available for use. These represent
83the ``standard'' input and output channels that have been established
84for the process.
85
86These streams are declared in the header file @file{stdio.h}.
87@pindex stdio.h
88
89@comment stdio.h
f65fd747 90@comment ISO
28f540f4
RM
91@deftypevar {FILE *} stdin
92The @dfn{standard input} stream, which is the normal source of input for the
93program.
94@end deftypevar
95@cindex standard input stream
96
97@comment stdio.h
f65fd747 98@comment ISO
28f540f4
RM
99@deftypevar {FILE *} stdout
100The @dfn{standard output} stream, which is used for normal output from
101the program.
102@end deftypevar
103@cindex standard output stream
104
105@comment stdio.h
f65fd747 106@comment ISO
28f540f4
RM
107@deftypevar {FILE *} stderr
108The @dfn{standard error} stream, which is used for error messages and
109diagnostics issued by the program.
110@end deftypevar
111@cindex standard error stream
112
a7a93d50 113On @gnusystems{}, you can specify what files or processes correspond to
28f540f4
RM
114these streams using the pipe and redirection facilities provided by the
115shell. (The primitives shells use to implement these facilities are
116described in @ref{File System Interface}.) Most other operating systems
117provide similar mechanisms, but the details of how to use them can vary.
118
1f77f049 119In @theglibc{}, @code{stdin}, @code{stdout}, and @code{stderr} are
b5e73f56
UD
120normal variables which you can set just like any others. For example,
121to redirect the standard output to a file, you could do:
28f540f4
RM
122
123@smallexample
124fclose (stdout);
125stdout = fopen ("standard-output-file", "w");
126@end smallexample
127
128Note however, that in other systems @code{stdin}, @code{stdout}, and
129@code{stderr} are macros that you cannot assign to in the normal way.
130But you can use @code{freopen} to get the effect of closing one and
131reopening it. @xref{Opening Streams}.
132
b5e73f56
UD
133The three streams @code{stdin}, @code{stdout}, and @code{stderr} are not
134unoriented at program start (@pxref{Streams and I18N}).
135
28f540f4
RM
136@node Opening Streams
137@section Opening Streams
138
139@cindex opening a stream
140Opening a file with the @code{fopen} function creates a new stream and
141establishes a connection between the stream and a file. This may
19c3f208 142involve creating a new file.
28f540f4
RM
143
144@pindex stdio.h
145Everything described in this section is declared in the header file
146@file{stdio.h}.
147
148@comment stdio.h
f65fd747 149@comment ISO
28f540f4 150@deftypefun {FILE *} fopen (const char *@var{filename}, const char *@var{opentype})
171e9210
AO
151@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@acsmem{} @acsfd{} @aculock{}}}
152@c fopen may leak the list lock if cancelled within _IO_link_in.
28f540f4
RM
153The @code{fopen} function opens a stream for I/O to the file
154@var{filename}, and returns a pointer to the stream.
155
156The @var{opentype} argument is a string that controls how the file is
157opened and specifies attributes of the resulting stream. It must begin
158with one of the following sequences of characters:
159
160@table @samp
161@item r
162Open an existing file for reading only.
163
164@item w
165Open the file for writing only. If the file already exists, it is
166truncated to zero length. Otherwise a new file is created.
167
168@item a
169Open a file for append access; that is, writing at the end of file only.
170If the file already exists, its initial contents are unchanged and
171output to the stream is appended to the end of the file.
172Otherwise, a new, empty file is created.
173
174@item r+
175Open an existing file for both reading and writing. The initial contents
176of the file are unchanged and the initial file position is at the
177beginning of the file.
178
179@item w+
180Open a file for both reading and writing. If the file already exists, it
181is truncated to zero length. Otherwise, a new file is created.
182
183@item a+
184Open or create file for both reading and appending. If the file exists,
185its initial contents are unchanged. Otherwise, a new file is created.
186The initial file position for reading is at the beginning of the file,
187but output is always appended to the end of the file.
188@end table
189
190As you can see, @samp{+} requests a stream that can do both input and
162ba701
PIM
191output. When using such a stream, you must call @code{fflush}
192(@pxref{Stream Buffering}) or a file positioning function such as
193@code{fseek} (@pxref{File Positioning}) when switching from reading
194to writing or vice versa. Otherwise, internal buffers might not be
195emptied properly.
28f540f4
RM
196
197Additional characters may appear after these to specify flags for the
198call. Always put the mode (@samp{r}, @samp{w+}, etc.) first; that is
199the only part you are guaranteed will be understood by all systems.
200
823fbbb4
AJ
201@Theglibc{} defines additional characters for use in @var{opentype}:
202
203@table @samp
204@item c
205The file is opened with cancellation in the I/O functions disabled.
206
207@item e
208The underlying file descriptor will be closed if you use any of the
209@code{exec@dots{}} functions (@pxref{Executing a File}). (This is
210equivalent to having set @code{FD_CLOEXEC} on that descriptor.
211@xref{Descriptor Flags}.)
212
213@item m
214The file is opened and accessed using @code{mmap}. This is only
215supported with files opened for reading.
216
217@item x
218Insist on creating a new file---if a file @var{filename} already
219exists, @code{fopen} fails rather than opening it. If you use
220@samp{x} you are guaranteed that you will not clobber an existing
221file. This is equivalent to the @code{O_EXCL} option to the
222@code{open} function (@pxref{Opening and Closing Files}).
223
224The @samp{x} modifier is part of @w{ISO C11}.
225@end table
28f540f4
RM
226
227The character @samp{b} in @var{opentype} has a standard meaning; it
228requests a binary stream rather than a text stream. But this makes no
a7a93d50 229difference in POSIX systems (including @gnusystems{}). If both
28f540f4
RM
230@samp{+} and @samp{b} are specified, they can appear in either order.
231@xref{Binary Streams}.
232
4e2e9999
UD
233@cindex stream orientation
234@cindex orientation, stream
235If the @var{opentype} string contains the sequence
236@code{,ccs=@var{STRING}} then @var{STRING} is taken as the name of a
237coded character set and @code{fopen} will mark the stream as
5b23062f
JM
238wide-oriented with appropriate conversion functions in place to convert
239from and to the character set @var{STRING}. Any other stream
4e2e9999
UD
240is opened initially unoriented and the orientation is decided with the
241first file operation. If the first operation is a wide character
242operation, the stream is not only marked as wide-oriented, also the
243conversion functions to convert to the coded character set used for the
244current locale are loaded. This will not change anymore from this point
245on even if the locale selected for the @code{LC_CTYPE} category is
246changed.
247
28f540f4
RM
248Any other characters in @var{opentype} are simply ignored. They may be
249meaningful in other systems.
250
251If the open fails, @code{fopen} returns a null pointer.
a3a4a74e 252
c703cd7a 253When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
0be8752b 25432 bit machine this function is in fact @code{fopen64} since the LFS
a3a4a74e 255interface replaces transparently the old interface.
28f540f4
RM
256@end deftypefun
257
258You can have multiple streams (or file descriptors) pointing to the same
259file open at the same time. If you do only input, this works
260straightforwardly, but you must be careful if any output streams are
261included. @xref{Stream/Descriptor Precautions}. This is equally true
262whether the streams are in one program (not usual) or in several
263programs (which can easily happen). It may be advantageous to use the
264file locking facilities to avoid simultaneous access. @xref{File
265Locks}.
266
a3a4a74e
UD
267@comment stdio.h
268@comment Unix98
269@deftypefun {FILE *} fopen64 (const char *@var{filename}, const char *@var{opentype})
171e9210 270@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@acsmem{} @acsfd{} @aculock{}}}
a3a4a74e
UD
271This function is similar to @code{fopen} but the stream it returns a
272pointer for is opened using @code{open64}. Therefore this stream can be
9ceeb279 273used even on files larger than @twoexp{31} bytes on 32 bit machines.
a3a4a74e
UD
274
275Please note that the return type is still @code{FILE *}. There is no
276special @code{FILE} type for the LFS interface.
277
278If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
279bits machine this function is available under the name @code{fopen}
280and so transparently replaces the old interface.
281@end deftypefun
282
28f540f4 283@comment stdio.h
f65fd747 284@comment ISO
28f540f4
RM
285@deftypevr Macro int FOPEN_MAX
286The value of this macro is an integer constant expression that
287represents the minimum number of streams that the implementation
288guarantees can be open simultaneously. You might be able to open more
289than this many streams, but that is not guaranteed. The value of this
290constant is at least eight, which includes the three standard streams
291@code{stdin}, @code{stdout}, and @code{stderr}. In POSIX.1 systems this
292value is determined by the @code{OPEN_MAX} parameter; @pxref{General
293Limits}. In BSD and GNU, it is controlled by the @code{RLIMIT_NOFILE}
294resource limit; @pxref{Limits on Resources}.
295@end deftypevr
296
297@comment stdio.h
f65fd747 298@comment ISO
28f540f4 299@deftypefun {FILE *} freopen (const char *@var{filename}, const char *@var{opentype}, FILE *@var{stream})
171e9210
AO
300@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @acsfd{}}}
301@c Like most I/O operations, this one is guarded by a recursive lock,
302@c released even upon cancellation, but cancellation may leak file
303@c descriptors and leave the stream in an inconsistent state (e.g.,
304@c still bound to the closed descriptor). Also, if the stream is
305@c part-way through a significant update (say running freopen) when a
306@c signal handler calls freopen again on the same stream, the result is
307@c likely to be an inconsistent stream, and the possibility of closing
308@c twice file descriptor number that the stream used to use, the second
309@c time when it might have already been reused by another thread.
28f540f4
RM
310This function is like a combination of @code{fclose} and @code{fopen}.
311It first closes the stream referred to by @var{stream}, ignoring any
312errors that are detected in the process. (Because errors are ignored,
313you should not use @code{freopen} on an output stream if you have
314actually done any output using the stream.) Then the file named by
315@var{filename} is opened with mode @var{opentype} as for @code{fopen},
316and associated with the same stream object @var{stream}.
317
318If the operation fails, a null pointer is returned; otherwise,
319@code{freopen} returns @var{stream}.
320
321@code{freopen} has traditionally been used to connect a standard stream
322such as @code{stdin} with a file of your own choice. This is useful in
323programs in which use of a standard stream for certain purposes is
1f77f049 324hard-coded. In @theglibc{}, you can simply close the standard
28f540f4
RM
325streams and open new ones with @code{fopen}. But other systems lack
326this ability, so using @code{freopen} is more portable.
a3a4a74e 327
c703cd7a 328When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
0be8752b 32932 bit machine this function is in fact @code{freopen64} since the LFS
a3a4a74e
UD
330interface replaces transparently the old interface.
331@end deftypefun
332
333@comment stdio.h
334@comment Unix98
335@deftypefun {FILE *} freopen64 (const char *@var{filename}, const char *@var{opentype}, FILE *@var{stream})
171e9210 336@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @acsfd{}}}
a3a4a74e 337This function is similar to @code{freopen}. The only difference is that
0be8752b 338on 32 bit machine the stream returned is able to read beyond the
9ceeb279 339@twoexp{31} bytes limits imposed by the normal interface. It should be
a3a4a74e
UD
340noted that the stream pointed to by @var{stream} need not be opened
341using @code{fopen64} or @code{freopen64} since its mode is not important
342for this function.
343
344If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
345bits machine this function is available under the name @code{freopen}
346and so transparently replaces the old interface.
28f540f4
RM
347@end deftypefun
348
f8b23b32
UD
349In some situations it is useful to know whether a given stream is
350available for reading or writing. This information is normally not
351available and would have to be remembered separately. Solaris
352introduced a few functions to get this information from the stream
1f77f049 353descriptor and these functions are also available in @theglibc{}.
f8b23b32
UD
354
355@comment stdio_ext.h
356@comment GNU
357@deftypefun int __freadable (FILE *@var{stream})
171e9210 358@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
f8b23b32
UD
359The @code{__freadable} function determines whether the stream
360@var{stream} was opened to allow reading. In this case the return value
361is nonzero. For write-only streams the function returns zero.
362
363This function is declared in @file{stdio_ext.h}.
364@end deftypefun
365
366@comment stdio_ext.h
367@comment GNU
368@deftypefun int __fwritable (FILE *@var{stream})
171e9210 369@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
f8b23b32
UD
370The @code{__fwritable} function determines whether the stream
371@var{stream} was opened to allow writing. In this case the return value
372is nonzero. For read-only streams the function returns zero.
373
374This function is declared in @file{stdio_ext.h}.
375@end deftypefun
376
c703cd7a 377For slightly different kinds of problems there are two more functions.
f8b23b32
UD
378They provide even finer-grained information.
379
380@comment stdio_ext.h
381@comment GNU
382@deftypefun int __freading (FILE *@var{stream})
171e9210 383@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
f8b23b32
UD
384The @code{__freading} function determines whether the stream
385@var{stream} was last read from or whether it is opened read-only. In
386this case the return value is nonzero, otherwise it is zero.
387Determining whether a stream opened for reading and writing was last
388used for writing allows to draw conclusions about the content about the
389buffer, among other things.
390
391This function is declared in @file{stdio_ext.h}.
392@end deftypefun
393
394@comment stdio_ext.h
395@comment GNU
396@deftypefun int __fwriting (FILE *@var{stream})
171e9210 397@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
f8b23b32
UD
398The @code{__fwriting} function determines whether the stream
399@var{stream} was last written to or whether it is opened write-only. In
400this case the return value is nonzero, otherwise it is zero.
401
402This function is declared in @file{stdio_ext.h}.
403@end deftypefun
404
28f540f4
RM
405
406@node Closing Streams
407@section Closing Streams
408
409@cindex closing a stream
410When a stream is closed with @code{fclose}, the connection between the
0bc93a2f 411stream and the file is canceled. After you have closed a stream, you
28f540f4
RM
412cannot perform any additional operations on it.
413
414@comment stdio.h
f65fd747 415@comment ISO
28f540f4 416@deftypefun int fclose (FILE *@var{stream})
171e9210
AO
417@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@aculock{} @acsmem{} @acsfd{}}}
418@c After fclose, it is undefined behavior to use the stream it points
419@c to. Therefore, one must only call fclose when the stream is
420@c otherwise unused. Concurrent uses started before will complete
421@c successfully because of the lock, which makes it MT-Safe. Calling it
422@c from a signal handler is perfectly safe if the stream is known to be
423@c no longer used, which is a precondition for fclose to be safe in the
424@c first place; since this is no further requirement, fclose is safe for
425@c use in async signals too. After calling fclose, you can no longer
426@c use the stream, not even to fclose it again, so its memory and file
427@c descriptor may leak if fclose is canceled before @c releasing them.
428@c That the stream must be unused and it becomes unused after the call
429@c is what would enable fclose to be AS- and AC-Safe while freopen
430@c isn't. However, because of the possibility of leaving __gconv_lock
431@c taken upon cancellation, AC-Safety is lost.
28f540f4
RM
432This function causes @var{stream} to be closed and the connection to
433the corresponding file to be broken. Any buffered output is written
434and any buffered input is discarded. The @code{fclose} function returns
435a value of @code{0} if the file was closed successfully, and @code{EOF}
19c3f208 436if an error was detected.
28f540f4
RM
437
438It is important to check for errors when you call @code{fclose} to close
439an output stream, because real, everyday errors can be detected at this
440time. For example, when @code{fclose} writes the remaining buffered
441output, it might get an error because the disk is full. Even if you
442know the buffer is empty, errors can still occur when closing a file if
443you are using NFS.
444
445The function @code{fclose} is declared in @file{stdio.h}.
446@end deftypefun
447
1f77f049 448To close all streams currently available @theglibc{} provides
6bc31da0
UD
449another function.
450
451@comment stdio.h
452@comment GNU
453@deftypefun int fcloseall (void)
171e9210
AO
454@safety{@prelim{}@mtunsafe{@mtasurace{:streams}}@asunsafe{}@acsafe{}}
455@c Like fclose, using any previously-opened streams after fcloseall is
456@c undefined. However, the implementation of fcloseall isn't equivalent
457@c to calling fclose for all streams: it just flushes and unbuffers all
458@c streams, without any locking. It's the flushing without locking that
459@c makes it unsafe.
6bc31da0 460This function causes all open streams of the process to be closed and
c703cd7a 461the connections to corresponding files to be broken. All buffered data
f2ea0f5b 462is written and any buffered input is discarded. The @code{fcloseall}
6bc31da0
UD
463function returns a value of @code{0} if all the files were closed
464successfully, and @code{EOF} if an error was detected.
465
0be8752b 466This function should be used only in special situations, e.g., when an
6bc31da0 467error occurred and the program must be aborted. Normally each single
0be8752b
UD
468stream should be closed separately so that problems with individual
469streams can be identified. It is also problematic since the standard
470streams (@pxref{Standard Streams}) will also be closed.
6bc31da0
UD
471
472The function @code{fcloseall} is declared in @file{stdio.h}.
473@end deftypefun
474
28f540f4
RM
475If the @code{main} function to your program returns, or if you call the
476@code{exit} function (@pxref{Normal Termination}), all open streams are
477automatically closed properly. If your program terminates in any other
478manner, such as by calling the @code{abort} function (@pxref{Aborting a
479Program}) or from a fatal signal (@pxref{Signal Handling}), open streams
480might not be closed properly. Buffered output might not be flushed and
481files may be incomplete. For more information on buffering of streams,
482see @ref{Stream Buffering}.
483
7b4161bb
UD
484@node Streams and Threads
485@section Streams and Threads
486
487@cindex threads
488@cindex multi-threaded application
489Streams can be used in multi-threaded applications in the same way they
490are used in single-threaded applications. But the programmer must be
11bf311e 491aware of the possible complications. It is important to know about
7b4161bb 492these also if the program one writes never use threads since the design
c703cd7a 493and implementation of many stream functions are heavily influenced by the
f6af7428 494requirements added by multi-threaded programming.
7b4161bb
UD
495
496The POSIX standard requires that by default the stream operations are
0bc93a2f 497atomic. I.e., issuing two stream operations for the same stream in two
7b4161bb
UD
498threads at the same time will cause the operations to be executed as if
499they were issued sequentially. The buffer operations performed while
500reading or writing are protected from other uses of the same stream. To
501do this each stream has an internal lock object which has to be
502(implicitly) acquired before any work can be done.
503
504But there are situations where this is not enough and there are also
505situations where this is not wanted. The implicit locking is not enough
506if the program requires more than one stream function call to happen
507atomically. One example would be if an output line a program wants to
508generate is created by several function calls. The functions by
509themselves would ensure only atomicity of their own operation, but not
510atomicity over all the function calls. For this it is necessary to
511perform the stream locking in the application code.
512
513@comment stdio.h
514@comment POSIX
515@deftypefun void flockfile (FILE *@var{stream})
171e9210
AO
516@safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@aculock{}}}
517@c There's no way to tell whether the lock was acquired before or after
518@c cancellation so as to unlock only when appropriate.
7b4161bb 519The @code{flockfile} function acquires the internal locking object
f6af7428 520associated with the stream @var{stream}. This ensures that no other
7b4161bb 521thread can explicitly through @code{flockfile}/@code{ftrylockfile} or
c703cd7a 522implicitly through the call of a stream function lock the stream. The
7b4161bb
UD
523thread will block until the lock is acquired. An explicit call to
524@code{funlockfile} has to be used to release the lock.
525@end deftypefun
526
527@comment stdio.h
528@comment POSIX
529@deftypefun int ftrylockfile (FILE *@var{stream})
171e9210 530@safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@aculock{}}}
f6af7428 531The @code{ftrylockfile} function tries to acquire the internal locking
7b4161bb
UD
532object associated with the stream @var{stream} just like
533@code{flockfile}. But unlike @code{flockfile} this function does not
534block if the lock is not available. @code{ftrylockfile} returns zero if
535the lock was successfully acquired. Otherwise the stream is locked by
536another thread.
537@end deftypefun
538
539@comment stdio.h
540@comment POSIX
541@deftypefun void funlockfile (FILE *@var{stream})
171e9210 542@safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@aculock{}}}
7b4161bb 543The @code{funlockfile} function releases the internal locking object of
cf822e3c 544the stream @var{stream}. The stream must have been locked before by a
7b4161bb
UD
545call to @code{flockfile} or a successful call of @code{ftrylockfile}.
546The implicit locking performed by the stream operations do not count.
547The @code{funlockfile} function does not return an error status and the
548behavior of a call for a stream which is not locked by the current
549thread is undefined.
550@end deftypefun
551
552The following example shows how the functions above can be used to
553generate an output line atomically even in multi-threaded applications
554(yes, the same job could be done with one @code{fprintf} call but it is
555sometimes not possible):
556
557@smallexample
558FILE *fp;
559@{
95fdc6a0 560 @dots{}
7b4161bb
UD
561 flockfile (fp);
562 fputs ("This is test number ", fp);
563 fprintf (fp, "%d\n", test);
564 funlockfile (fp)
565@}
566@end smallexample
567
568Without the explicit locking it would be possible for another thread to
c703cd7a 569use the stream @var{fp} after the @code{fputs} call returns and before
7b4161bb
UD
570@code{fprintf} was called with the result that the number does not
571follow the word @samp{number}.
572
573From this description it might already be clear that the locking objects
574in streams are no simple mutexes. Since locking the same stream twice
575in the same thread is allowed the locking objects must be equivalent to
576recursive mutexes. These mutexes keep track of the owner and the number
577of times the lock is acquired. The same number of @code{funlockfile}
578calls by the same threads is necessary to unlock the stream completely.
579For instance:
580
581@smallexample
582void
583foo (FILE *fp)
584@{
585 ftrylockfile (fp);
586 fputs ("in foo\n", fp);
587 /* @r{This is very wrong!!!} */
588 funlockfile (fp);
589@}
590@end smallexample
591
592It is important here that the @code{funlockfile} function is only called
593if the @code{ftrylockfile} function succeeded in locking the stream. It
594is therefore always wrong to ignore the result of @code{ftrylockfile}.
595And it makes no sense since otherwise one would use @code{flockfile}.
596The result of code like that above is that either @code{funlockfile}
f6af7428 597tries to free a stream that hasn't been locked by the current thread or it
7b4161bb
UD
598frees the stream prematurely. The code should look like this:
599
600@smallexample
601void
602foo (FILE *fp)
603@{
604 if (ftrylockfile (fp) == 0)
605 @{
606 fputs ("in foo\n", fp);
607 funlockfile (fp);
608 @}
609@}
610@end smallexample
611
c703cd7a 612Now that we covered why it is necessary to have locking it is
f6af7428 613necessary to talk about situations when locking is unwanted and what can
7b4161bb
UD
614be done. The locking operations (explicit or implicit) don't come for
615free. Even if a lock is not taken the cost is not zero. The operations
3ca9e670 616which have to be performed require memory operations that are safe in
7b4161bb
UD
617multi-processor environments. With the many local caches involved in
618such systems this is quite costly. So it is best to avoid the locking
3ca9e670
UD
619completely if it is not needed -- because the code in question is never
620used in a context where two or more threads may use a stream at a time.
7b4161bb
UD
621This can be determined most of the time for application code; for
622library code which can be used in many contexts one should default to be
623conservative and use locking.
624
625There are two basic mechanisms to avoid locking. The first is to use
626the @code{_unlocked} variants of the stream operations. The POSIX
1f77f049 627standard defines quite a few of those and @theglibc{} adds a few
7b4161bb 628more. These variants of the functions behave just like the functions
3ca9e670 629with the name without the suffix except that they do not lock the
7b4161bb 630stream. Using these functions is very desirable since they are
f6af7428 631potentially much faster. This is not only because the locking
7b4161bb 632operation itself is avoided. More importantly, functions like
0bc93a2f 633@code{putc} and @code{getc} are very simple and traditionally (before the
7b4161bb 634introduction of threads) were implemented as macros which are very fast
3ca9e670
UD
635if the buffer is not empty. With the addition of locking requirements
636these functions are no longer implemented as macros since they would
bbf70ae9 637expand to too much code.
3ca9e670 638But these macros are still available with the same functionality under the new
7b4161bb
UD
639names @code{putc_unlocked} and @code{getc_unlocked}. This possibly huge
640difference of speed also suggests the use of the @code{_unlocked}
641functions even if locking is required. The difference is that the
642locking then has to be performed in the program:
643
644@smallexample
645void
646foo (FILE *fp, char *buf)
647@{
648 flockfile (fp);
649 while (*buf != '/')
650 putc_unlocked (*buf++, fp);
651 funlockfile (fp);
652@}
653@end smallexample
654
655If in this example the @code{putc} function would be used and the
656explicit locking would be missing the @code{putc} function would have to
657acquire the lock in every call, potentially many times depending on when
658the loop terminates. Writing it the way illustrated above allows the
659@code{putc_unlocked} macro to be used which means no locking and direct
660manipulation of the buffer of the stream.
661
662A second way to avoid locking is by using a non-standard function which
1f77f049 663was introduced in Solaris and is available in @theglibc{} as well.
7b4161bb
UD
664
665@comment stdio_ext.h
666@comment GNU
667@deftypefun int __fsetlocking (FILE *@var{stream}, int @var{type})
171e9210
AO
668@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asulock{}}@acsafe{}}
669@c Changing the implicit-locking status of a stream while it's in use by
670@c another thread may cause a lock to be implicitly acquired and not
671@c released, or vice-versa. This function should probably hold the lock
672@c while changing this setting, to make sure we don't change it while
673@c there are any concurrent uses. Meanwhile, callers should acquire the
674@c lock themselves to be safe, and even concurrent uses with external
675@c locking will be fine, as long as functions that require external
676@c locking are not called without holding locks.
7b4161bb
UD
677
678The @code{__fsetlocking} function can be used to select whether the
679stream operations will implicitly acquire the locking object of the
680stream @var{stream}. By default this is done but it can be disabled and
681reinstated using this function. There are three values defined for the
682@var{type} parameter.
683
684@vtable @code
685@item FSETLOCKING_INTERNAL
686The stream @code{stream} will from now on use the default internal
687locking. Every stream operation with exception of the @code{_unlocked}
688variants will implicitly lock the stream.
689
690@item FSETLOCKING_BYCALLER
c703cd7a 691After the @code{__fsetlocking} function returns, the user is responsible
7b4161bb
UD
692for locking the stream. None of the stream operations will implicitly
693do this anymore until the state is set back to
694@code{FSETLOCKING_INTERNAL}.
695
696@item FSETLOCKING_QUERY
697@code{__fsetlocking} only queries the current locking state of the
698stream. The return value will be @code{FSETLOCKING_INTERNAL} or
699@code{FSETLOCKING_BYCALLER} depending on the state.
700@end vtable
701
702The return value of @code{__fsetlocking} is either
703@code{FSETLOCKING_INTERNAL} or @code{FSETLOCKING_BYCALLER} depending on
704the state of the stream before the call.
705
706This function and the values for the @var{type} parameter are declared
707in @file{stdio_ext.h}.
708@end deftypefun
709
710This function is especially useful when program code has to be used
711which is written without knowledge about the @code{_unlocked} functions
3ca9e670 712(or if the programmer was too lazy to use them).
7b4161bb 713
b5e73f56
UD
714@node Streams and I18N
715@section Streams in Internationalized Applications
716
717@w{ISO C90} introduced the new type @code{wchar_t} to allow handling
718larger character sets. What was missing was a possibility to output
719strings of @code{wchar_t} directly. One had to convert them into
720multibyte strings using @code{mbstowcs} (there was no @code{mbsrtowcs}
721yet) and then use the normal stream functions. While this is doable it
722is very cumbersome since performing the conversions is not trivial and
723greatly increases program complexity and size.
724
725The Unix standard early on (I think in XPG4.2) introduced two additional
726format specifiers for the @code{printf} and @code{scanf} families of
727functions. Printing and reading of single wide characters was made
728possible using the @code{%C} specifier and wide character strings can be
729handled with @code{%S}. These modifiers behave just like @code{%c} and
730@code{%s} only that they expect the corresponding argument to have the
731wide character type and that the wide character and string are
732transformed into/from multibyte strings before being used.
733
734This was a beginning but it is still not good enough. Not always is it
735desirable to use @code{printf} and @code{scanf}. The other, smaller and
736faster functions cannot handle wide characters. Second, it is not
737possible to have a format string for @code{printf} and @code{scanf}
738consisting of wide characters. The result is that format strings would
739have to be generated if they have to contain non-basic characters.
740
741@cindex C++ streams
742@cindex streams, C++
743In the @w{Amendment 1} to @w{ISO C90} a whole new set of functions was
744added to solve the problem. Most of the stream functions got a
745counterpart which take a wide character or wide character string instead
746of a character or string respectively. The new functions operate on the
747same streams (like @code{stdout}). This is different from the model of
748the C++ runtime library where separate streams for wide and normal I/O
749are used.
750
751@cindex orientation, stream
752@cindex stream orientation
753Being able to use the same stream for wide and normal operations comes
754with a restriction: a stream can be used either for wide operations or
755for normal operations. Once it is decided there is no way back. Only a
756call to @code{freopen} or @code{freopen64} can reset the
757@dfn{orientation}. The orientation can be decided in three ways:
758
759@itemize @bullet
760@item
c703cd7a 761If any of the normal character functions are used (this includes the
22298d18 762@code{fread} and @code{fwrite} functions) the stream is marked as not
b5e73f56
UD
763wide oriented.
764
765@item
c703cd7a 766If any of the wide character functions are used the stream is marked as
22298d18 767wide oriented.
b5e73f56
UD
768
769@item
770The @code{fwide} function can be used to set the orientation either way.
771@end itemize
772
773It is important to never mix the use of wide and not wide operations on
774a stream. There are no diagnostics issued. The application behavior
775will simply be strange or the application will simply crash. The
c703cd7a 776@code{fwide} function can help avoid this.
b5e73f56
UD
777
778@comment wchar.h
779@comment ISO
780@deftypefun int fwide (FILE *@var{stream}, int @var{mode})
171e9210
AO
781@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{}}}
782@c Querying is always safe, but changing the stream when it's in use
783@c upthread may be problematic. Like most lock-acquiring functions,
784@c this one may leak the lock if canceled.
b5e73f56 785
22298d18 786The @code{fwide} function can be used to set and query the state of the
b5e73f56
UD
787orientation of the stream @var{stream}. If the @var{mode} parameter has
788a positive value the streams get wide oriented, for negative values
789narrow oriented. It is not possible to overwrite previous orientations
790with @code{fwide}. I.e., if the stream @var{stream} was already
791oriented before the call nothing is done.
792
793If @var{mode} is zero the current orientation state is queried and
794nothing is changed.
795
796The @code{fwide} function returns a negative value, zero, or a positive
797value if the stream is narrow, not at all, or wide oriented
798respectively.
799
800This function was introduced in @w{Amendment 1} to @w{ISO C90} and is
801declared in @file{wchar.h}.
802@end deftypefun
803
804It is generally a good idea to orient a stream as early as possible.
805This can prevent surprise especially for the standard streams
806@code{stdin}, @code{stdout}, and @code{stderr}. If some library
807function in some situations uses one of these streams and this use
808orients the stream in a different way the rest of the application
809expects it one might end up with hard to reproduce errors. Remember
810that no errors are signal if the streams are used incorrectly. Leaving
811a stream unoriented after creation is normally only necessary for
812library functions which create streams which can be used in different
813contexts.
814
815When writing code which uses streams and which can be used in different
816contexts it is important to query the orientation of the stream before
817using it (unless the rules of the library interface demand a specific
818orientation). The following little, silly function illustrates this.
819
820@smallexample
821void
822print_f (FILE *fp)
823@{
824 if (fwide (fp, 0) > 0)
825 /* @r{Positive return value means wide orientation.} */
826 fputwc (L'f', fp);
827 else
828 fputc ('f', fp);
829@}
830@end smallexample
831
832Note that in this case the function @code{print_f} decides about the
833orientation of the stream if it was unoriented before (will not happen
c703cd7a 834if the advice above is followed).
b5e73f56
UD
835
836The encoding used for the @code{wchar_t} values is unspecified and the
837user must not make any assumptions about it. For I/O of @code{wchar_t}
838values this means that it is impossible to write these values directly
839to the stream. This is not what follows from the @w{ISO C} locale model
840either. What happens instead is that the bytes read from or written to
841the underlying media are first converted into the internal encoding
842chosen by the implementation for @code{wchar_t}. The external encoding
843is determined by the @code{LC_CTYPE} category of the current locale or
844by the @samp{ccs} part of the mode specification given to @code{fopen},
845@code{fopen64}, @code{freopen}, or @code{freopen64}. How and when the
c703cd7a 846conversion happens is unspecified and it happens invisibly to the user.
b5e73f56
UD
847
848Since a stream is created in the unoriented state it has at that point
849no conversion associated with it. The conversion which will be used is
850determined by the @code{LC_CTYPE} category selected at the time the
851stream is oriented. If the locales are changed at the runtime this
852might produce surprising results unless one pays attention. This is
853just another good reason to orient the stream explicitly as soon as
854possible, perhaps with a call to @code{fwide}.
855
28f540f4
RM
856@node Simple Output
857@section Simple Output by Characters or Lines
858
859@cindex writing to a stream, by characters
860This section describes functions for performing character- and
861line-oriented output.
862
c703cd7a 863These narrow stream functions are declared in the header file
b5e73f56 864@file{stdio.h} and the wide stream functions in @file{wchar.h}.
28f540f4 865@pindex stdio.h
b5e73f56 866@pindex wchar.h
28f540f4
RM
867
868@comment stdio.h
f65fd747 869@comment ISO
28f540f4 870@deftypefun int fputc (int @var{c}, FILE *@var{stream})
171e9210
AO
871@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
872@c If the stream is in use when interrupted by a signal, the recursive
873@c lock won't help ensure the stream is consistent; indeed, if fputc
874@c gets a signal precisely before the post-incremented _IO_write_ptr
875@c value is stored, we may overwrite the interrupted write. Conversely,
876@c depending on compiler optimizations, the incremented _IO_write_ptr
877@c may be stored before the character is stored in the buffer,
878@c corrupting the stream if async cancel hits between the two stores.
879@c There may be other reasons for AS- and AC-unsafety in the overflow
880@c cases.
28f540f4 881The @code{fputc} function converts the character @var{c} to type
19c3f208 882@code{unsigned char}, and writes it to the stream @var{stream}.
28f540f4
RM
883@code{EOF} is returned if a write error occurs; otherwise the
884character @var{c} is returned.
885@end deftypefun
886
b5e73f56
UD
887@comment wchar.h
888@comment ISO
889@deftypefun wint_t fputwc (wchar_t @var{wc}, FILE *@var{stream})
171e9210 890@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
b5e73f56
UD
891The @code{fputwc} function writes the wide character @var{wc} to the
892stream @var{stream}. @code{WEOF} is returned if a write error occurs;
893otherwise the character @var{wc} is returned.
894@end deftypefun
895
7b4161bb
UD
896@comment stdio.h
897@comment POSIX
898@deftypefun int fputc_unlocked (int @var{c}, FILE *@var{stream})
171e9210
AO
899@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
900@c The unlocked functions can't possibly satisfy the MT-Safety
901@c requirements on their own, because they require external locking for
902@c safety.
7b4161bb 903The @code{fputc_unlocked} function is equivalent to the @code{fputc}
1dc843f7 904function except that it does not implicitly lock the stream.
7b4161bb
UD
905@end deftypefun
906
b5e73f56
UD
907@comment wchar.h
908@comment POSIX
8ded91fb 909@deftypefun wint_t fputwc_unlocked (wchar_t @var{wc}, FILE *@var{stream})
171e9210 910@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 911The @code{fputwc_unlocked} function is equivalent to the @code{fputwc}
1dc843f7 912function except that it does not implicitly lock the stream.
b5e73f56
UD
913
914This function is a GNU extension.
915@end deftypefun
916
28f540f4 917@comment stdio.h
f65fd747 918@comment ISO
28f540f4 919@deftypefun int putc (int @var{c}, FILE *@var{stream})
171e9210 920@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
28f540f4
RM
921This is just like @code{fputc}, except that most systems implement it as
922a macro, making it faster. One consequence is that it may evaluate the
923@var{stream} argument more than once, which is an exception to the
924general rule for macros. @code{putc} is usually the best function to
925use for writing a single character.
926@end deftypefun
927
b5e73f56
UD
928@comment wchar.h
929@comment ISO
930@deftypefun wint_t putwc (wchar_t @var{wc}, FILE *@var{stream})
171e9210 931@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
b5e73f56
UD
932This is just like @code{fputwc}, except that it can be implement as
933a macro, making it faster. One consequence is that it may evaluate the
934@var{stream} argument more than once, which is an exception to the
935general rule for macros. @code{putwc} is usually the best function to
936use for writing a single wide character.
937@end deftypefun
938
7b4161bb
UD
939@comment stdio.h
940@comment POSIX
941@deftypefun int putc_unlocked (int @var{c}, FILE *@var{stream})
171e9210 942@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 943The @code{putc_unlocked} function is equivalent to the @code{putc}
1dc843f7 944function except that it does not implicitly lock the stream.
7b4161bb
UD
945@end deftypefun
946
b5e73f56
UD
947@comment wchar.h
948@comment GNU
949@deftypefun wint_t putwc_unlocked (wchar_t @var{wc}, FILE *@var{stream})
171e9210 950@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 951The @code{putwc_unlocked} function is equivalent to the @code{putwc}
1dc843f7 952function except that it does not implicitly lock the stream.
b5e73f56
UD
953
954This function is a GNU extension.
955@end deftypefun
956
28f540f4 957@comment stdio.h
f65fd747 958@comment ISO
28f540f4 959@deftypefun int putchar (int @var{c})
171e9210 960@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
28f540f4
RM
961The @code{putchar} function is equivalent to @code{putc} with
962@code{stdout} as the value of the @var{stream} argument.
963@end deftypefun
964
b5e73f56
UD
965@comment wchar.h
966@comment ISO
c44a663d 967@deftypefun wint_t putwchar (wchar_t @var{wc})
171e9210 968@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
b5e73f56
UD
969The @code{putwchar} function is equivalent to @code{putwc} with
970@code{stdout} as the value of the @var{stream} argument.
971@end deftypefun
972
7b4161bb
UD
973@comment stdio.h
974@comment POSIX
975@deftypefun int putchar_unlocked (int @var{c})
171e9210 976@safety{@prelim{}@mtunsafe{@mtasurace{:stdout}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 977The @code{putchar_unlocked} function is equivalent to the @code{putchar}
1dc843f7 978function except that it does not implicitly lock the stream.
7b4161bb
UD
979@end deftypefun
980
b5e73f56
UD
981@comment wchar.h
982@comment GNU
983@deftypefun wint_t putwchar_unlocked (wchar_t @var{wc})
171e9210 984@safety{@prelim{}@mtunsafe{@mtasurace{:stdout}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 985The @code{putwchar_unlocked} function is equivalent to the @code{putwchar}
1dc843f7 986function except that it does not implicitly lock the stream.
b5e73f56
UD
987
988This function is a GNU extension.
989@end deftypefun
990
28f540f4 991@comment stdio.h
f65fd747 992@comment ISO
28f540f4 993@deftypefun int fputs (const char *@var{s}, FILE *@var{stream})
171e9210 994@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
28f540f4
RM
995The function @code{fputs} writes the string @var{s} to the stream
996@var{stream}. The terminating null character is not written.
997This function does @emph{not} add a newline character, either.
998It outputs only the characters in the string.
999
1000This function returns @code{EOF} if a write error occurs, and otherwise
1001a non-negative value.
1002
1003For example:
1004
1005@smallexample
1006fputs ("Are ", stdout);
1007fputs ("you ", stdout);
1008fputs ("hungry?\n", stdout);
1009@end smallexample
1010
1011@noindent
1012outputs the text @samp{Are you hungry?} followed by a newline.
1013@end deftypefun
1014
b5e73f56
UD
1015@comment wchar.h
1016@comment ISO
1017@deftypefun int fputws (const wchar_t *@var{ws}, FILE *@var{stream})
171e9210 1018@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
b5e73f56
UD
1019The function @code{fputws} writes the wide character string @var{ws} to
1020the stream @var{stream}. The terminating null character is not written.
1021This function does @emph{not} add a newline character, either. It
1022outputs only the characters in the string.
1023
1024This function returns @code{WEOF} if a write error occurs, and otherwise
1025a non-negative value.
1026@end deftypefun
1027
7b4161bb
UD
1028@comment stdio.h
1029@comment GNU
1030@deftypefun int fputs_unlocked (const char *@var{s}, FILE *@var{stream})
171e9210 1031@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 1032The @code{fputs_unlocked} function is equivalent to the @code{fputs}
1dc843f7 1033function except that it does not implicitly lock the stream.
7b4161bb
UD
1034
1035This function is a GNU extension.
1036@end deftypefun
1037
b5e73f56
UD
1038@comment wchar.h
1039@comment GNU
1040@deftypefun int fputws_unlocked (const wchar_t *@var{ws}, FILE *@var{stream})
171e9210 1041@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 1042The @code{fputws_unlocked} function is equivalent to the @code{fputws}
1dc843f7 1043function except that it does not implicitly lock the stream.
b5e73f56
UD
1044
1045This function is a GNU extension.
1046@end deftypefun
1047
28f540f4 1048@comment stdio.h
f65fd747 1049@comment ISO
28f540f4 1050@deftypefun int puts (const char *@var{s})
171e9210 1051@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1052The @code{puts} function writes the string @var{s} to the stream
1053@code{stdout} followed by a newline. The terminating null character of
1054the string is not written. (Note that @code{fputs} does @emph{not}
1055write a newline as this function does.)
1056
1057@code{puts} is the most convenient function for printing simple
1058messages. For example:
1059
1060@smallexample
1061puts ("This is a message.");
1062@end smallexample
0be8752b
UD
1063
1064@noindent
1065outputs the text @samp{This is a message.} followed by a newline.
28f540f4
RM
1066@end deftypefun
1067
1068@comment stdio.h
1069@comment SVID
1070@deftypefun int putw (int @var{w}, FILE *@var{stream})
171e9210 1071@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1072This function writes the word @var{w} (that is, an @code{int}) to
1073@var{stream}. It is provided for compatibility with SVID, but we
1074recommend you use @code{fwrite} instead (@pxref{Block Input/Output}).
1075@end deftypefun
1076
1077@node Character Input
1078@section Character Input
1079
1080@cindex reading from a stream, by characters
b5e73f56 1081This section describes functions for performing character-oriented
c703cd7a 1082input. These narrow stream functions are declared in the header file
b5e73f56
UD
1083@file{stdio.h} and the wide character functions are declared in
1084@file{wchar.h}.
28f540f4 1085@pindex stdio.h
b5e73f56
UD
1086@pindex wchar.h
1087
1088These functions return an @code{int} or @code{wint_t} value (for narrow
1089and wide stream functions respectively) that is either a character of
1090input, or the special value @code{EOF}/@code{WEOF} (usually -1). For
1091the narrow stream functions it is important to store the result of these
1092functions in a variable of type @code{int} instead of @code{char}, even
1093when you plan to use it only as a character. Storing @code{EOF} in a
1094@code{char} variable truncates its value to the size of a character, so
1095that it is no longer distinguishable from the valid character
1096@samp{(char) -1}. So always use an @code{int} for the result of
1097@code{getc} and friends, and check for @code{EOF} after the call; once
1098you've verified that the result is not @code{EOF}, you can be sure that
1099it will fit in a @samp{char} variable without loss of information.
28f540f4
RM
1100
1101@comment stdio.h
f65fd747 1102@comment ISO
28f540f4 1103@deftypefun int fgetc (FILE *@var{stream})
171e9210
AO
1104@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
1105@c Same caveats as fputc, but instead of losing a write in case of async
1106@c signals, we may read the same character more than once, and the
1107@c stream may be left in odd states due to cancellation in the underflow
1108@c cases.
28f540f4
RM
1109This function reads the next character as an @code{unsigned char} from
1110the stream @var{stream} and returns its value, converted to an
1111@code{int}. If an end-of-file condition or read error occurs,
19c3f208 1112@code{EOF} is returned instead.
28f540f4
RM
1113@end deftypefun
1114
b5e73f56
UD
1115@comment wchar.h
1116@comment ISO
1117@deftypefun wint_t fgetwc (FILE *@var{stream})
171e9210 1118@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
b5e73f56
UD
1119This function reads the next wide character from the stream @var{stream}
1120and returns its value. If an end-of-file condition or read error
1121occurs, @code{WEOF} is returned instead.
1122@end deftypefun
1123
7b4161bb
UD
1124@comment stdio.h
1125@comment POSIX
1126@deftypefun int fgetc_unlocked (FILE *@var{stream})
171e9210 1127@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 1128The @code{fgetc_unlocked} function is equivalent to the @code{fgetc}
1dc843f7 1129function except that it does not implicitly lock the stream.
7b4161bb
UD
1130@end deftypefun
1131
b5e73f56
UD
1132@comment wchar.h
1133@comment GNU
1134@deftypefun wint_t fgetwc_unlocked (FILE *@var{stream})
171e9210 1135@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 1136The @code{fgetwc_unlocked} function is equivalent to the @code{fgetwc}
1dc843f7 1137function except that it does not implicitly lock the stream.
b5e73f56
UD
1138
1139This function is a GNU extension.
1140@end deftypefun
1141
28f540f4 1142@comment stdio.h
f65fd747 1143@comment ISO
28f540f4 1144@deftypefun int getc (FILE *@var{stream})
171e9210 1145@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1146This is just like @code{fgetc}, except that it is permissible (and
1147typical) for it to be implemented as a macro that evaluates the
1148@var{stream} argument more than once. @code{getc} is often highly
1149optimized, so it is usually the best function to use to read a single
1150character.
1151@end deftypefun
1152
b5e73f56
UD
1153@comment wchar.h
1154@comment ISO
1155@deftypefun wint_t getwc (FILE *@var{stream})
171e9210 1156@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
b5e73f56
UD
1157This is just like @code{fgetwc}, except that it is permissible for it to
1158be implemented as a macro that evaluates the @var{stream} argument more
1159than once. @code{getwc} can be highly optimized, so it is usually the
1160best function to use to read a single wide character.
1161@end deftypefun
1162
7b4161bb
UD
1163@comment stdio.h
1164@comment POSIX
1165@deftypefun int getc_unlocked (FILE *@var{stream})
171e9210 1166@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 1167The @code{getc_unlocked} function is equivalent to the @code{getc}
1dc843f7 1168function except that it does not implicitly lock the stream.
7b4161bb
UD
1169@end deftypefun
1170
b5e73f56
UD
1171@comment wchar.h
1172@comment GNU
1173@deftypefun wint_t getwc_unlocked (FILE *@var{stream})
171e9210 1174@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 1175The @code{getwc_unlocked} function is equivalent to the @code{getwc}
1dc843f7 1176function except that it does not implicitly lock the stream.
b5e73f56
UD
1177
1178This function is a GNU extension.
1179@end deftypefun
1180
28f540f4 1181@comment stdio.h
f65fd747 1182@comment ISO
28f540f4 1183@deftypefun int getchar (void)
171e9210 1184@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1185The @code{getchar} function is equivalent to @code{getc} with @code{stdin}
1186as the value of the @var{stream} argument.
1187@end deftypefun
1188
b5e73f56
UD
1189@comment wchar.h
1190@comment ISO
1191@deftypefun wint_t getwchar (void)
171e9210 1192@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
b5e73f56
UD
1193The @code{getwchar} function is equivalent to @code{getwc} with @code{stdin}
1194as the value of the @var{stream} argument.
1195@end deftypefun
1196
7b4161bb
UD
1197@comment stdio.h
1198@comment POSIX
1199@deftypefun int getchar_unlocked (void)
171e9210 1200@safety{@prelim{}@mtunsafe{@mtasurace{:stdin}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 1201The @code{getchar_unlocked} function is equivalent to the @code{getchar}
1dc843f7 1202function except that it does not implicitly lock the stream.
7b4161bb
UD
1203@end deftypefun
1204
b5e73f56
UD
1205@comment wchar.h
1206@comment GNU
1207@deftypefun wint_t getwchar_unlocked (void)
171e9210 1208@safety{@prelim{}@mtunsafe{@mtasurace{:stdin}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 1209The @code{getwchar_unlocked} function is equivalent to the @code{getwchar}
1dc843f7 1210function except that it does not implicitly lock the stream.
b5e73f56
UD
1211
1212This function is a GNU extension.
1213@end deftypefun
1214
28f540f4
RM
1215Here is an example of a function that does input using @code{fgetc}. It
1216would work just as well using @code{getc} instead, or using
b5e73f56
UD
1217@code{getchar ()} instead of @w{@code{fgetc (stdin)}}. The code would
1218also work the same for the wide character stream functions.
28f540f4
RM
1219
1220@smallexample
1221int
1222y_or_n_p (const char *question)
1223@{
1224 fputs (question, stdout);
1225 while (1)
1226 @{
1227 int c, answer;
1228 /* @r{Write a space to separate answer from question.} */
1229 fputc (' ', stdout);
1230 /* @r{Read the first character of the line.}
162ba701 1231 @r{This should be the answer character, but might not be.} */
28f540f4
RM
1232 c = tolower (fgetc (stdin));
1233 answer = c;
1234 /* @r{Discard rest of input line.} */
1235 while (c != '\n' && c != EOF)
162ba701 1236 c = fgetc (stdin);
28f540f4
RM
1237 /* @r{Obey the answer if it was valid.} */
1238 if (answer == 'y')
162ba701 1239 return 1;
28f540f4 1240 if (answer == 'n')
162ba701 1241 return 0;
28f540f4
RM
1242 /* @r{Answer was invalid: ask for valid answer.} */
1243 fputs ("Please answer y or n:", stdout);
1244 @}
1245@}
1246@end smallexample
1247
1248@comment stdio.h
1249@comment SVID
1250@deftypefun int getw (FILE *@var{stream})
171e9210 1251@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1252This function reads a word (that is, an @code{int}) from @var{stream}.
1253It's provided for compatibility with SVID. We recommend you use
1254@code{fread} instead (@pxref{Block Input/Output}). Unlike @code{getc},
1255any @code{int} value could be a valid result. @code{getw} returns
1256@code{EOF} when it encounters end-of-file or an error, but there is no
1257way to distinguish this from an input word with value -1.
1258@end deftypefun
1259
1260@node Line Input
1261@section Line-Oriented Input
1262
b5e73f56 1263Since many programs interpret input on the basis of lines, it is
28f540f4
RM
1264convenient to have functions to read a line of text from a stream.
1265
1266Standard C has functions to do this, but they aren't very safe: null
1267characters and even (for @code{gets}) long lines can confuse them. So
1f77f049 1268@theglibc{} provides the nonstandard @code{getline} function that
28f540f4
RM
1269makes it easy to read lines reliably.
1270
1271Another GNU extension, @code{getdelim}, generalizes @code{getline}. It
1272reads a delimited record, defined as everything through the next
1273occurrence of a specified delimiter character.
1274
1275All these functions are declared in @file{stdio.h}.
1276
1277@comment stdio.h
1278@comment GNU
1279@deftypefun ssize_t getline (char **@var{lineptr}, size_t *@var{n}, FILE *@var{stream})
171e9210
AO
1280@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@aculock{} @acucorrupt{} @acsmem{}}}
1281@c Besides the usual possibility of getting an inconsistent stream in a
1282@c signal handler or leaving it inconsistent in case of cancellation,
1283@c the possibility of leaving a dangling pointer upon cancellation
1284@c between reallocing the buffer at *lineptr and updating the pointer
1285@c brings about another case of @acucorrupt.
28f540f4
RM
1286This function reads an entire line from @var{stream}, storing the text
1287(including the newline and a terminating null character) in a buffer
1288and storing the buffer address in @code{*@var{lineptr}}.
1289
1290Before calling @code{getline}, you should place in @code{*@var{lineptr}}
1291the address of a buffer @code{*@var{n}} bytes long, allocated with
1292@code{malloc}. If this buffer is long enough to hold the line,
1293@code{getline} stores the line in this buffer. Otherwise,
1294@code{getline} makes the buffer bigger using @code{realloc}, storing the
1295new buffer address back in @code{*@var{lineptr}} and the increased size
1296back in @code{*@var{n}}.
1297@xref{Unconstrained Allocation}.
1298
1299If you set @code{*@var{lineptr}} to a null pointer, and @code{*@var{n}}
1300to zero, before the call, then @code{getline} allocates the initial
1c21d115
DS
1301buffer for you by calling @code{malloc}. This buffer remains allocated
1302even if @code{getline} encounters errors and is unable to read any bytes.
28f540f4
RM
1303
1304In either case, when @code{getline} returns, @code{*@var{lineptr}} is
1305a @code{char *} which points to the text of the line.
1306
1307When @code{getline} is successful, it returns the number of characters
1308read (including the newline, but not including the terminating null).
1309This value enables you to distinguish null characters that are part of
1310the line from the null character inserted as a terminator.
1311
1312This function is a GNU extension, but it is the recommended way to read
1313lines from a stream. The alternative standard functions are unreliable.
1314
ec28fc7c
UD
1315If an error occurs or end of file is reached without any bytes read,
1316@code{getline} returns @code{-1}.
28f540f4
RM
1317@end deftypefun
1318
1319@comment stdio.h
1320@comment GNU
1321@deftypefun ssize_t getdelim (char **@var{lineptr}, size_t *@var{n}, int @var{delimiter}, FILE *@var{stream})
171e9210
AO
1322@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@aculock{} @acucorrupt{} @acsmem{}}}
1323@c See the getline @acucorrupt note.
28f540f4
RM
1324This function is like @code{getline} except that the character which
1325tells it to stop reading is not necessarily newline. The argument
1326@var{delimiter} specifies the delimiter character; @code{getdelim} keeps
1327reading until it sees that character (or end of file).
1328
1329The text is stored in @var{lineptr}, including the delimiter character
1330and a terminating null. Like @code{getline}, @code{getdelim} makes
1331@var{lineptr} bigger if it isn't big enough.
1332
1333@code{getline} is in fact implemented in terms of @code{getdelim}, just
1334like this:
1335
1336@smallexample
1337ssize_t
1338getline (char **lineptr, size_t *n, FILE *stream)
1339@{
1340 return getdelim (lineptr, n, '\n', stream);
1341@}
1342@end smallexample
1343@end deftypefun
1344
1345@comment stdio.h
f65fd747 1346@comment ISO
28f540f4 1347@deftypefun {char *} fgets (char *@var{s}, int @var{count}, FILE *@var{stream})
171e9210 1348@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1349The @code{fgets} function reads characters from the stream @var{stream}
1350up to and including a newline character and stores them in the string
1351@var{s}, adding a null character to mark the end of the string. You
1352must supply @var{count} characters worth of space in @var{s}, but the
1353number of characters read is at most @var{count} @minus{} 1. The extra
1354character space is used to hold the null character at the end of the
1355string.
1356
1357If the system is already at end of file when you call @code{fgets}, then
1358the contents of the array @var{s} are unchanged and a null pointer is
1359returned. A null pointer is also returned if a read error occurs.
1360Otherwise, the return value is the pointer @var{s}.
1361
1362@strong{Warning:} If the input data has a null character, you can't tell.
1363So don't use @code{fgets} unless you know the data cannot contain a null.
1364Don't use it to read files edited by the user because, if the user inserts
1365a null character, you should either handle it properly or print a clear
1366error message. We recommend using @code{getline} instead of @code{fgets}.
1367@end deftypefun
1368
b5e73f56
UD
1369@comment wchar.h
1370@comment ISO
1371@deftypefun {wchar_t *} fgetws (wchar_t *@var{ws}, int @var{count}, FILE *@var{stream})
171e9210 1372@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
b5e73f56
UD
1373The @code{fgetws} function reads wide characters from the stream
1374@var{stream} up to and including a newline character and stores them in
1375the string @var{ws}, adding a null wide character to mark the end of the
1376string. You must supply @var{count} wide characters worth of space in
1377@var{ws}, but the number of characters read is at most @var{count}
1378@minus{} 1. The extra character space is used to hold the null wide
1379character at the end of the string.
1380
1381If the system is already at end of file when you call @code{fgetws}, then
1382the contents of the array @var{ws} are unchanged and a null pointer is
1383returned. A null pointer is also returned if a read error occurs.
1384Otherwise, the return value is the pointer @var{ws}.
1385
1386@strong{Warning:} If the input data has a null wide character (which are
1387null bytes in the input stream), you can't tell. So don't use
1388@code{fgetws} unless you know the data cannot contain a null. Don't use
1389it to read files edited by the user because, if the user inserts a null
1390character, you should either handle it properly or print a clear error
1391message.
1392@comment XXX We need getwline!!!
1393@end deftypefun
1394
7b4161bb
UD
1395@comment stdio.h
1396@comment GNU
1397@deftypefun {char *} fgets_unlocked (char *@var{s}, int @var{count}, FILE *@var{stream})
171e9210 1398@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 1399The @code{fgets_unlocked} function is equivalent to the @code{fgets}
1dc843f7 1400function except that it does not implicitly lock the stream.
7b4161bb
UD
1401
1402This function is a GNU extension.
1403@end deftypefun
1404
b5e73f56
UD
1405@comment wchar.h
1406@comment GNU
1407@deftypefun {wchar_t *} fgetws_unlocked (wchar_t *@var{ws}, int @var{count}, FILE *@var{stream})
171e9210 1408@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
b5e73f56 1409The @code{fgetws_unlocked} function is equivalent to the @code{fgetws}
1dc843f7 1410function except that it does not implicitly lock the stream.
b5e73f56
UD
1411
1412This function is a GNU extension.
1413@end deftypefun
1414
28f540f4 1415@comment stdio.h
f65fd747 1416@comment ISO
28f540f4 1417@deftypefn {Deprecated function} {char *} gets (char *@var{s})
171e9210 1418@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1419The function @code{gets} reads characters from the stream @code{stdin}
1420up to the next newline character, and stores them in the string @var{s}.
1421The newline character is discarded (note that this differs from the
1422behavior of @code{fgets}, which copies the newline character into the
1423string). If @code{gets} encounters a read error or end-of-file, it
1424returns a null pointer; otherwise it returns @var{s}.
1425
1426@strong{Warning:} The @code{gets} function is @strong{very dangerous}
1427because it provides no protection against overflowing the string
1f77f049 1428@var{s}. @Theglibc{} includes it for compatibility only. You
28f540f4
RM
1429should @strong{always} use @code{fgets} or @code{getline} instead. To
1430remind you of this, the linker (if using GNU @code{ld}) will issue a
1431warning whenever you use @code{gets}.
1432@end deftypefn
1433
1434@node Unreading
1435@section Unreading
1436@cindex peeking at input
1437@cindex unreading characters
1438@cindex pushing input back
1439
1440In parser programs it is often useful to examine the next character in
1441the input stream without removing it from the stream. This is called
1442``peeking ahead'' at the input because your program gets a glimpse of
1443the input it will read next.
1444
1445Using stream I/O, you can peek ahead at input by first reading it and
19c3f208 1446then @dfn{unreading} it (also called @dfn{pushing it back} on the stream).
28f540f4
RM
1447Unreading a character makes it available to be input again from the stream,
1448by the next call to @code{fgetc} or other input function on that stream.
1449
1450@menu
1451* Unreading Idea:: An explanation of unreading with pictures.
1452* How Unread:: How to call @code{ungetc} to do unreading.
1453@end menu
1454
1455@node Unreading Idea
1456@subsection What Unreading Means
1457
1458Here is a pictorial explanation of unreading. Suppose you have a
1459stream reading a file that contains just six characters, the letters
1460@samp{foobar}. Suppose you have read three characters so far. The
1461situation looks like this:
1462
1463@smallexample
1464f o o b a r
162ba701 1465 ^
28f540f4
RM
1466@end smallexample
1467
1468@noindent
1469so the next input character will be @samp{b}.
1470
1471@c @group Invalid outside @example
1472If instead of reading @samp{b} you unread the letter @samp{o}, you get a
1473situation like this:
1474
1475@smallexample
1476f o o b a r
162ba701 1477 |
28f540f4
RM
1478 o--
1479 ^
1480@end smallexample
1481
1482@noindent
1483so that the next input characters will be @samp{o} and @samp{b}.
1484@c @end group
1485
1486@c @group
1487If you unread @samp{9} instead of @samp{o}, you get this situation:
1488
1489@smallexample
1490f o o b a r
162ba701 1491 |
28f540f4
RM
1492 9--
1493 ^
1494@end smallexample
1495
1496@noindent
1497so that the next input characters will be @samp{9} and @samp{b}.
1498@c @end group
1499
1500@node How Unread
1501@subsection Using @code{ungetc} To Do Unreading
19c3f208 1502
28f540f4
RM
1503The function to unread a character is called @code{ungetc}, because it
1504reverses the action of @code{getc}.
1505
1506@comment stdio.h
f65fd747 1507@comment ISO
28f540f4 1508@deftypefun int ungetc (int @var{c}, FILE *@var{stream})
171e9210 1509@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1510The @code{ungetc} function pushes back the character @var{c} onto the
1511input stream @var{stream}. So the next input from @var{stream} will
1512read @var{c} before anything else.
1513
1514If @var{c} is @code{EOF}, @code{ungetc} does nothing and just returns
1515@code{EOF}. This lets you call @code{ungetc} with the return value of
1516@code{getc} without needing to check for an error from @code{getc}.
1517
1518The character that you push back doesn't have to be the same as the last
1519character that was actually read from the stream. In fact, it isn't
1520necessary to actually read any characters from the stream before
f4efd068
UD
1521unreading them with @code{ungetc}! But that is a strange way to write a
1522program; usually @code{ungetc} is used only to unread a character that
1f77f049 1523was just read from the same stream. @Theglibc{} supports this
f4efd068 1524even on files opened in binary mode, but other systems might not.
28f540f4 1525
1f77f049 1526@Theglibc{} only supports one character of pushback---in other
28f540f4
RM
1527words, it does not work to call @code{ungetc} twice without doing input
1528in between. Other systems might let you push back multiple characters;
1529then reading from the stream retrieves the characters in the reverse
1530order that they were pushed.
1531
1532Pushing back characters doesn't alter the file; only the internal
1533buffering for the stream is affected. If a file positioning function
a5a0310d
UD
1534(such as @code{fseek}, @code{fseeko} or @code{rewind}; @pxref{File
1535Positioning}) is called, any pending pushed-back characters are
1536discarded.
28f540f4
RM
1537
1538Unreading a character on a stream that is at end of file clears the
1539end-of-file indicator for the stream, because it makes the character of
1540input available. After you read that character, trying to read again
1541will encounter end of file.
1542@end deftypefun
1543
b5e73f56
UD
1544@comment wchar.h
1545@comment ISO
1546@deftypefun wint_t ungetwc (wint_t @var{wc}, FILE *@var{stream})
171e9210 1547@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
b5e73f56
UD
1548The @code{ungetwc} function behaves just like @code{ungetc} just that it
1549pushes back a wide character.
1550@end deftypefun
1551
28f540f4
RM
1552Here is an example showing the use of @code{getc} and @code{ungetc} to
1553skip over whitespace characters. When this function reaches a
1554non-whitespace character, it unreads that character to be seen again on
1555the next read operation on the stream.
1556
1557@smallexample
1558#include <stdio.h>
1559#include <ctype.h>
1560
1561void
1562skip_whitespace (FILE *stream)
1563@{
1564 int c;
1565 do
1566 /* @r{No need to check for @code{EOF} because it is not}
1567 @r{@code{isspace}, and @code{ungetc} ignores @code{EOF}.} */
1568 c = getc (stream);
1569 while (isspace (c));
1570 ungetc (c, stream);
1571@}
1572@end smallexample
1573
1574@node Block Input/Output
1575@section Block Input/Output
1576
1577This section describes how to do input and output operations on blocks
1578of data. You can use these functions to read and write binary data, as
1579well as to read and write text in fixed-size blocks instead of by
1580characters or lines.
1581@cindex binary I/O to a stream
1582@cindex block I/O to a stream
1583@cindex reading from a stream, by blocks
1584@cindex writing to a stream, by blocks
1585
1586Binary files are typically used to read and write blocks of data in the
1587same format as is used to represent the data in a running program. In
1588other words, arbitrary blocks of memory---not just character or string
1589objects---can be written to a binary file, and meaningfully read in
1590again by the same program.
1591
1592Storing data in binary form is often considerably more efficient than
1593using the formatted I/O functions. Also, for floating-point numbers,
1594the binary form avoids possible loss of precision in the conversion
1595process. On the other hand, binary files can't be examined or modified
1596easily using many standard file utilities (such as text editors), and
1597are not portable between different implementations of the language, or
1598different kinds of computers.
1599
1600These functions are declared in @file{stdio.h}.
1601@pindex stdio.h
1602
1603@comment stdio.h
f65fd747 1604@comment ISO
28f540f4 1605@deftypefun size_t fread (void *@var{data}, size_t @var{size}, size_t @var{count}, FILE *@var{stream})
171e9210 1606@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1607This function reads up to @var{count} objects of size @var{size} into
1608the array @var{data}, from the stream @var{stream}. It returns the
1609number of objects actually read, which might be less than @var{count} if
1610a read error occurs or the end of the file is reached. This function
1611returns a value of zero (and doesn't read anything) if either @var{size}
1612or @var{count} is zero.
1613
1614If @code{fread} encounters end of file in the middle of an object, it
1615returns the number of complete objects read, and discards the partial
1616object. Therefore, the stream remains at the actual end of the file.
1617@end deftypefun
1618
7b4161bb
UD
1619@comment stdio.h
1620@comment GNU
1621@deftypefun size_t fread_unlocked (void *@var{data}, size_t @var{size}, size_t @var{count}, FILE *@var{stream})
171e9210 1622@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 1623The @code{fread_unlocked} function is equivalent to the @code{fread}
1dc843f7 1624function except that it does not implicitly lock the stream.
7b4161bb
UD
1625
1626This function is a GNU extension.
1627@end deftypefun
1628
28f540f4 1629@comment stdio.h
f65fd747 1630@comment ISO
28f540f4 1631@deftypefun size_t fwrite (const void *@var{data}, size_t @var{size}, size_t @var{count}, FILE *@var{stream})
171e9210 1632@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
1633This function writes up to @var{count} objects of size @var{size} from
1634the array @var{data}, to the stream @var{stream}. The return value is
1635normally @var{count}, if the call succeeds. Any other value indicates
1636some sort of error, such as running out of space.
1637@end deftypefun
1638
7b4161bb
UD
1639@comment stdio.h
1640@comment GNU
1641@deftypefun size_t fwrite_unlocked (const void *@var{data}, size_t @var{size}, size_t @var{count}, FILE *@var{stream})
171e9210 1642@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 1643The @code{fwrite_unlocked} function is equivalent to the @code{fwrite}
1dc843f7 1644function except that it does not implicitly lock the stream.
7b4161bb
UD
1645
1646This function is a GNU extension.
1647@end deftypefun
1648
28f540f4
RM
1649@node Formatted Output
1650@section Formatted Output
1651
1652@cindex format string, for @code{printf}
1653@cindex template, for @code{printf}
1654@cindex formatted output to a stream
1655@cindex writing to a stream, formatted
1656The functions described in this section (@code{printf} and related
1657functions) provide a convenient way to perform formatted output. You
1658call @code{printf} with a @dfn{format string} or @dfn{template string}
1659that specifies how to format the values of the remaining arguments.
1660
1661Unless your program is a filter that specifically performs line- or
1662character-oriented processing, using @code{printf} or one of the other
1663related functions described in this section is usually the easiest and
1664most concise way to perform output. These functions are especially
1665useful for printing error messages, tables of data, and the like.
1666
1667@menu
1668* Formatted Output Basics:: Some examples to get you started.
1669* Output Conversion Syntax:: General syntax of conversion
162ba701 1670 specifications.
28f540f4 1671* Table of Output Conversions:: Summary of output conversions and
162ba701 1672 what they do.
28f540f4
RM
1673* Integer Conversions:: Details about formatting of integers.
1674* Floating-Point Conversions:: Details about formatting of
162ba701 1675 floating-point numbers.
28f540f4 1676* Other Output Conversions:: Details about formatting of strings,
162ba701 1677 characters, pointers, and the like.
28f540f4
RM
1678* Formatted Output Functions:: Descriptions of the actual functions.
1679* Dynamic Output:: Functions that allocate memory for the output.
1680* Variable Arguments Output:: @code{vprintf} and friends.
1681* Parsing a Template String:: What kinds of args does a given template
162ba701 1682 call for?
28f540f4
RM
1683* Example of Parsing:: Sample program using @code{parse_printf_format}.
1684@end menu
1685
1686@node Formatted Output Basics
1687@subsection Formatted Output Basics
1688
1689The @code{printf} function can be used to print any number of arguments.
1690The template string argument you supply in a call provides
1691information not only about the number of additional arguments, but also
1692about their types and what style should be used for printing them.
1693
1694Ordinary characters in the template string are simply written to the
1695output stream as-is, while @dfn{conversion specifications} introduced by
1696a @samp{%} character in the template cause subsequent arguments to be
1697formatted and written to the output stream. For example,
1698@cindex conversion specifications (@code{printf})
1699
1700@smallexample
1701int pct = 37;
1702char filename[] = "foo.txt";
1703printf ("Processing of `%s' is %d%% finished.\nPlease be patient.\n",
162ba701 1704 filename, pct);
28f540f4
RM
1705@end smallexample
1706
1707@noindent
1708produces output like
1709
1710@smallexample
1711Processing of `foo.txt' is 37% finished.
1712Please be patient.
1713@end smallexample
1714
1715This example shows the use of the @samp{%d} conversion to specify that
1716an @code{int} argument should be printed in decimal notation, the
1717@samp{%s} conversion to specify printing of a string argument, and
1718the @samp{%%} conversion to print a literal @samp{%} character.
1719
1720There are also conversions for printing an integer argument as an
1721unsigned value in octal, decimal, or hexadecimal radix (@samp{%o},
1722@samp{%u}, or @samp{%x}, respectively); or as a character value
1723(@samp{%c}).
1724
1725Floating-point numbers can be printed in normal, fixed-point notation
1726using the @samp{%f} conversion or in exponential notation using the
1727@samp{%e} conversion. The @samp{%g} conversion uses either @samp{%e}
1728or @samp{%f} format, depending on what is more appropriate for the
1729magnitude of the particular number.
1730
1731You can control formatting more precisely by writing @dfn{modifiers}
1732between the @samp{%} and the character that indicates which conversion
1733to apply. These slightly alter the ordinary behavior of the conversion.
1734For example, most conversion specifications permit you to specify a
1735minimum field width and a flag indicating whether you want the result
1736left- or right-justified within the field.
1737
1738The specific flags and modifiers that are permitted and their
1739interpretation vary depending on the particular conversion. They're all
1740described in more detail in the following sections. Don't worry if this
1741all seems excessively complicated at first; you can almost always get
1742reasonable free-format output without using any of the modifiers at all.
1743The modifiers are mostly used to make the output look ``prettier'' in
1744tables.
1745
1746@node Output Conversion Syntax
1747@subsection Output Conversion Syntax
1748
1749This section provides details about the precise syntax of conversion
1750specifications that can appear in a @code{printf} template
1751string.
1752
390955cb
UD
1753Characters in the template string that are not part of a conversion
1754specification are printed as-is to the output stream. Multibyte
1755character sequences (@pxref{Character Set Handling}) are permitted in a
1756template string.
28f540f4
RM
1757
1758The conversion specifications in a @code{printf} template string have
1759the general form:
1760
f89829da 1761@smallexample
dfd2257a 1762% @r{[} @var{param-no} @r{$]} @var{flags} @var{width} @r{[} . @var{precision} @r{]} @var{type} @var{conversion}
f89829da
UD
1763@end smallexample
1764
1765@noindent
1766or
1767
1768@smallexample
1769% @r{[} @var{param-no} @r{$]} @var{flags} @var{width} . @r{*} @r{[} @var{param-no} @r{$]} @var{type} @var{conversion}
1770@end smallexample
28f540f4
RM
1771
1772For example, in the conversion specifier @samp{%-10.8ld}, the @samp{-}
1773is a flag, @samp{10} specifies the field width, the precision is
1774@samp{8}, the letter @samp{l} is a type modifier, and @samp{d} specifies
1775the conversion style. (This particular type specifier says to
1776print a @code{long int} argument in decimal notation, with a minimum of
17778 digits left-justified in a field at least 10 characters wide.)
1778
1779In more detail, output conversion specifications consist of an
1780initial @samp{%} character followed in sequence by:
1781
1782@itemize @bullet
dfd2257a
UD
1783@item
1784An optional specification of the parameter used for this format.
e8b1163e 1785Normally the parameters to the @code{printf} function are assigned to the
f2ea0f5b 1786formats in the order of appearance in the format string. But in some
dfd2257a 1787situations (such as message translation) this is not desirable and this
e8b1163e 1788extension allows an explicit parameter to be specified.
dfd2257a 1789
f89829da 1790The @var{param-no} parts of the format must be integers in the range of
dfd2257a 17911 to the maximum number of arguments present to the function call. Some
c703cd7a 1792implementations limit this number to a certain upper bound. The exact
dfd2257a
UD
1793limit can be retrieved by the following constant.
1794
1795@defvr Macro NL_ARGMAX
f89829da 1796The value of @code{NL_ARGMAX} is the maximum value allowed for the
9dcc8f11 1797specification of a positional parameter in a @code{printf} call. The
dfd2257a
UD
1798actual value in effect at runtime can be retrieved by using
1799@code{sysconf} using the @code{_SC_NL_ARGMAX} parameter @pxref{Sysconf
1800Definition}.
1801
c703cd7a 1802Some systems have a quite low limit such as @math{9} for @w{System V}
1f77f049 1803systems. @Theglibc{} has no real limit.
dfd2257a
UD
1804@end defvr
1805
1806If any of the formats has a specification for the parameter position all
0bc93a2f 1807of them in the format string shall have one. Otherwise the behavior is
dfd2257a
UD
1808undefined.
1809
19c3f208 1810@item
28f540f4
RM
1811Zero or more @dfn{flag characters} that modify the normal behavior of
1812the conversion specification.
1813@cindex flag character (@code{printf})
1814
19c3f208 1815@item
28f540f4
RM
1816An optional decimal integer specifying the @dfn{minimum field width}.
1817If the normal conversion produces fewer characters than this, the field
1818is padded with spaces to the specified width. This is a @emph{minimum}
1819value; if the normal conversion produces more characters than this, the
1820field is @emph{not} truncated. Normally, the output is right-justified
1821within the field.
1822@cindex minimum field width (@code{printf})
1823
1824You can also specify a field width of @samp{*}. This means that the
1825next argument in the argument list (before the actual value to be
1826printed) is used as the field width. The value must be an @code{int}.
1827If the value is negative, this means to set the @samp{-} flag (see
1828below) and to use the absolute value as the field width.
1829
19c3f208 1830@item
28f540f4
RM
1831An optional @dfn{precision} to specify the number of digits to be
1832written for the numeric conversions. If the precision is specified, it
1833consists of a period (@samp{.}) followed optionally by a decimal integer
1834(which defaults to zero if omitted).
1835@cindex precision (@code{printf})
1836
1837You can also specify a precision of @samp{*}. This means that the next
1838argument in the argument list (before the actual value to be printed) is
1839used as the precision. The value must be an @code{int}, and is ignored
1840if it is negative. If you specify @samp{*} for both the field width and
1841precision, the field width argument precedes the precision argument.
1842Other C library versions may not recognize this syntax.
1843
1844@item
1845An optional @dfn{type modifier character}, which is used to specify the
1846data type of the corresponding argument if it differs from the default
1847type. (For example, the integer conversions assume a type of @code{int},
1848but you can specify @samp{h}, @samp{l}, or @samp{L} for other integer
1849types.)
1850@cindex type modifier character (@code{printf})
1851
1852@item
1853A character that specifies the conversion to be applied.
1854@end itemize
1855
19c3f208 1856The exact options that are permitted and how they are interpreted vary
28f540f4
RM
1857between the different conversion specifiers. See the descriptions of the
1858individual conversions for information about the particular options that
1859they use.
1860
1861With the @samp{-Wformat} option, the GNU C compiler checks calls to
1862@code{printf} and related functions. It examines the format string and
1863verifies that the correct number and types of arguments are supplied.
1864There is also a GNU C syntax to tell the compiler that a function you
19c3f208 1865write uses a @code{printf}-style format string.
28f540f4
RM
1866@xref{Function Attributes, , Declaring Attributes of Functions,
1867gcc.info, Using GNU CC}, for more information.
1868
1869@node Table of Output Conversions
1870@subsection Table of Output Conversions
1871@cindex output conversions, for @code{printf}
1872
1873Here is a table summarizing what all the different conversions do:
1874
1875@table @asis
1876@item @samp{%d}, @samp{%i}
1877Print an integer as a signed decimal number. @xref{Integer
1878Conversions}, for details. @samp{%d} and @samp{%i} are synonymous for
1879output, but are different when used with @code{scanf} for input
1880(@pxref{Table of Input Conversions}).
1881
1882@item @samp{%o}
1883Print an integer as an unsigned octal number. @xref{Integer
1884Conversions}, for details.
1885
1886@item @samp{%u}
1887Print an integer as an unsigned decimal number. @xref{Integer
1888Conversions}, for details.
1889
1890@item @samp{%x}, @samp{%X}
1891Print an integer as an unsigned hexadecimal number. @samp{%x} uses
1892lower-case letters and @samp{%X} uses upper-case. @xref{Integer
1893Conversions}, for details.
1894
1895@item @samp{%f}
1896Print a floating-point number in normal (fixed-point) notation.
1897@xref{Floating-Point Conversions}, for details.
1898
1899@item @samp{%e}, @samp{%E}
1900Print a floating-point number in exponential notation. @samp{%e} uses
1901lower-case letters and @samp{%E} uses upper-case. @xref{Floating-Point
1902Conversions}, for details.
1903
1904@item @samp{%g}, @samp{%G}
1905Print a floating-point number in either normal or exponential notation,
1906whichever is more appropriate for its magnitude. @samp{%g} uses
1907lower-case letters and @samp{%G} uses upper-case. @xref{Floating-Point
1908Conversions}, for details.
1909
2f6d1f1b 1910@item @samp{%a}, @samp{%A}
c703cd7a 1911Print a floating-point number in a hexadecimal fractional notation with
2f6d1f1b
UD
1912the exponent to base 2 represented in decimal digits. @samp{%a} uses
1913lower-case letters and @samp{%A} uses upper-case. @xref{Floating-Point
1914Conversions}, for details.
1915
28f540f4
RM
1916@item @samp{%c}
1917Print a single character. @xref{Other Output Conversions}.
1918
b5e73f56
UD
1919@item @samp{%C}
1920This is an alias for @samp{%lc} which is supported for compatibility
1921with the Unix standard.
1922
28f540f4
RM
1923@item @samp{%s}
1924Print a string. @xref{Other Output Conversions}.
1925
b5e73f56
UD
1926@item @samp{%S}
1927This is an alias for @samp{%ls} which is supported for compatibility
1928with the Unix standard.
1929
28f540f4
RM
1930@item @samp{%p}
1931Print the value of a pointer. @xref{Other Output Conversions}.
1932
1933@item @samp{%n}
1934Get the number of characters printed so far. @xref{Other Output Conversions}.
1935Note that this conversion specification never produces any output.
1936
1937@item @samp{%m}
1938Print the string corresponding to the value of @code{errno}.
1939(This is a GNU extension.)
1940@xref{Other Output Conversions}.
1941
1942@item @samp{%%}
1943Print a literal @samp{%} character. @xref{Other Output Conversions}.
1944@end table
1945
1946If the syntax of a conversion specification is invalid, unpredictable
1947things will happen, so don't do this. If there aren't enough function
1948arguments provided to supply values for all the conversion
1949specifications in the template string, or if the arguments are not of
1950the correct types, the results are unpredictable. If you supply more
1951arguments than conversion specifications, the extra argument values are
1952simply ignored; this is sometimes useful.
1953
1954@node Integer Conversions
1955@subsection Integer Conversions
1956
1957This section describes the options for the @samp{%d}, @samp{%i},
1958@samp{%o}, @samp{%u}, @samp{%x}, and @samp{%X} conversion
1959specifications. These conversions print integers in various formats.
1960
1961The @samp{%d} and @samp{%i} conversion specifications both print an
1962@code{int} argument as a signed decimal number; while @samp{%o},
1963@samp{%u}, and @samp{%x} print the argument as an unsigned octal,
1964decimal, or hexadecimal number (respectively). The @samp{%X} conversion
1965specification is just like @samp{%x} except that it uses the characters
1966@samp{ABCDEF} as digits instead of @samp{abcdef}.
1967
1968The following flags are meaningful:
1969
1970@table @asis
1971@item @samp{-}
1972Left-justify the result in the field (instead of the normal
1973right-justification).
1974
1975@item @samp{+}
1976For the signed @samp{%d} and @samp{%i} conversions, print a
1977plus sign if the value is positive.
1978
1979@item @samp{ }
1980For the signed @samp{%d} and @samp{%i} conversions, if the result
1981doesn't start with a plus or minus sign, prefix it with a space
1982character instead. Since the @samp{+} flag ensures that the result
1983includes a sign, this flag is ignored if you supply both of them.
1984
1985@item @samp{#}
1986For the @samp{%o} conversion, this forces the leading digit to be
1987@samp{0}, as if by increasing the precision. For @samp{%x} or
1988@samp{%X}, this prefixes a leading @samp{0x} or @samp{0X} (respectively)
1989to the result. This doesn't do anything useful for the @samp{%d},
1990@samp{%i}, or @samp{%u} conversions. Using this flag produces output
1991which can be parsed by the @code{strtoul} function (@pxref{Parsing of
1992Integers}) and @code{scanf} with the @samp{%i} conversion
1993(@pxref{Numeric Input Conversions}).
1994
1995@item @samp{'}
1996Separate the digits into groups as specified by the locale specified for
1997the @code{LC_NUMERIC} category; @pxref{General Numeric}. This flag is a
1998GNU extension.
1999
2000@item @samp{0}
2001Pad the field with zeros instead of spaces. The zeros are placed after
2002any indication of sign or base. This flag is ignored if the @samp{-}
2003flag is also specified, or if a precision is specified.
2004@end table
2005
2006If a precision is supplied, it specifies the minimum number of digits to
2007appear; leading zeros are produced if necessary. If you don't specify a
2008precision, the number is printed with as many digits as it needs. If
2009you convert a value of zero with an explicit precision of zero, then no
2010characters at all are produced.
2011
2012Without a type modifier, the corresponding argument is treated as an
2013@code{int} (for the signed conversions @samp{%i} and @samp{%d}) or
2014@code{unsigned int} (for the unsigned conversions @samp{%o}, @samp{%u},
2015@samp{%x}, and @samp{%X}). Recall that since @code{printf} and friends
2016are variadic, any @code{char} and @code{short} arguments are
2017automatically converted to @code{int} by the default argument
2018promotions. For arguments of other integer types, you can use these
2019modifiers:
2020
2021@table @samp
cc3fa755
UD
2022@item hh
2023Specifies that the argument is a @code{signed char} or @code{unsigned
2024char}, as appropriate. A @code{char} argument is converted to an
2025@code{int} or @code{unsigned int} by the default argument promotions
c703cd7a 2026anyway, but the @samp{hh} modifier says to convert it back to a
cc3fa755
UD
2027@code{char} again.
2028
ec751a23 2029This modifier was introduced in @w{ISO C99}.
e852e889 2030
28f540f4
RM
2031@item h
2032Specifies that the argument is a @code{short int} or @code{unsigned
2033short int}, as appropriate. A @code{short} argument is converted to an
2034@code{int} or @code{unsigned int} by the default argument promotions
2035anyway, but the @samp{h} modifier says to convert it back to a
2036@code{short} again.
2037
e852e889
UD
2038@item j
2039Specifies that the argument is a @code{intmax_t} or @code{uintmax_t}, as
2040appropriate.
2041
ec751a23 2042This modifier was introduced in @w{ISO C99}.
e852e889 2043
28f540f4
RM
2044@item l
2045Specifies that the argument is a @code{long int} or @code{unsigned long
c703cd7a 2046int}, as appropriate. Two @samp{l} characters are like the @samp{L}
28f540f4
RM
2047modifier, below.
2048
b5e73f56
UD
2049If used with @samp{%c} or @samp{%s} the corresponding parameter is
2050considered as a wide character or wide character string respectively.
2051This use of @samp{l} was introduced in @w{Amendment 1} to @w{ISO C90}.
2052
28f540f4
RM
2053@item L
2054@itemx ll
2055@itemx q
2056Specifies that the argument is a @code{long long int}. (This type is
2057an extension supported by the GNU C compiler. On systems that don't
2058support extra-long integers, this is the same as @code{long int}.)
2059
2060The @samp{q} modifier is another name for the same thing, which comes
2061from 4.4 BSD; a @w{@code{long long int}} is sometimes called a ``quad''
2062@code{int}.
2063
e852e889
UD
2064@item t
2065Specifies that the argument is a @code{ptrdiff_t}.
2066
ec751a23 2067This modifier was introduced in @w{ISO C99}.
e852e889
UD
2068
2069@item z
2070@itemx Z
2071Specifies that the argument is a @code{size_t}.
2072
ec751a23 2073@samp{z} was introduced in @w{ISO C99}. @samp{Z} is a GNU extension
0be8752b 2074predating this addition and should not be used in new code.
28f540f4
RM
2075@end table
2076
2077Here is an example. Using the template string:
2078
2079@smallexample
2080"|%5d|%-5d|%+5d|%+-5d|% 5d|%05d|%5.0d|%5.2d|%d|\n"
2081@end smallexample
2082
2083@noindent
2084to print numbers using the different options for the @samp{%d}
2085conversion gives results like:
2086
2087@smallexample
2088| 0|0 | +0|+0 | 0|00000| | 00|0|
2089| 1|1 | +1|+1 | 1|00001| 1| 01|1|
2090| -1|-1 | -1|-1 | -1|-0001| -1| -01|-1|
776e8492 2091|100000|100000|+100000|+100000| 100000|100000|100000|100000|100000|
28f540f4
RM
2092@end smallexample
2093
2094In particular, notice what happens in the last case where the number
2095is too large to fit in the minimum field width specified.
2096
2097Here are some more examples showing how unsigned integers print under
2098various format options, using the template string:
2099
2100@smallexample
2101"|%5u|%5o|%5x|%5X|%#5o|%#5x|%#5X|%#10.8x|\n"
2102@end smallexample
2103
2104@smallexample
776e8492 2105| 0| 0| 0| 0| 0| 0| 0| 00000000|
28f540f4
RM
2106| 1| 1| 1| 1| 01| 0x1| 0X1|0x00000001|
2107|100000|303240|186a0|186A0|0303240|0x186a0|0X186A0|0x000186a0|
2108@end smallexample
2109
2110
2111@node Floating-Point Conversions
2112@subsection Floating-Point Conversions
2113
2114This section discusses the conversion specifications for floating-point
2115numbers: the @samp{%f}, @samp{%e}, @samp{%E}, @samp{%g}, and @samp{%G}
2116conversions.
2117
2118The @samp{%f} conversion prints its argument in fixed-point notation,
2119producing output of the form
2120@w{[@code{-}]@var{ddd}@code{.}@var{ddd}},
2121where the number of digits following the decimal point is controlled
2122by the precision you specify.
2123
2124The @samp{%e} conversion prints its argument in exponential notation,
2125producing output of the form
2126@w{[@code{-}]@var{d}@code{.}@var{ddd}@code{e}[@code{+}|@code{-}]@var{dd}}.
2127Again, the number of digits following the decimal point is controlled by
2128the precision. The exponent always contains at least two digits. The
2129@samp{%E} conversion is similar but the exponent is marked with the letter
2130@samp{E} instead of @samp{e}.
2131
2132The @samp{%g} and @samp{%G} conversions print the argument in the style
2133of @samp{%e} or @samp{%E} (respectively) if the exponent would be less
776e8492 2134than -4 or greater than or equal to the precision; otherwise they use
11bf311e 2135the @samp{%f} style. A precision of @code{0}, is taken as 1.
776e8492
AJ
2136Trailing zeros are removed from the fractional portion of the result and
2137a decimal-point character appears only if it is followed by a digit.
28f540f4 2138
2f6d1f1b 2139The @samp{%a} and @samp{%A} conversions are meant for representing
0be8752b 2140floating-point numbers exactly in textual form so that they can be
2f6d1f1b 2141exchanged as texts between different programs and/or machines. The
c703cd7a 2142numbers are represented in the form
2f6d1f1b
UD
2143@w{[@code{-}]@code{0x}@var{h}@code{.}@var{hhh}@code{p}[@code{+}|@code{-}]@var{dd}}.
2144At the left of the decimal-point character exactly one digit is print.
91ea72b7 2145This character is only @code{0} if the number is denormalized.
49c091e5 2146Otherwise the value is unspecified; it is implementation dependent how many
2f6d1f1b
UD
2147bits are used. The number of hexadecimal digits on the right side of
2148the decimal-point character is equal to the precision. If the precision
2149is zero it is determined to be large enough to provide an exact
2150representation of the number (or it is large enough to distinguish two
2151adjacent values if the @code{FLT_RADIX} is not a power of 2,
91ea72b7 2152@pxref{Floating Point Parameters}). For the @samp{%a} conversion
2f6d1f1b
UD
2153lower-case characters are used to represent the hexadecimal number and
2154the prefix and exponent sign are printed as @code{0x} and @code{p}
2155respectively. Otherwise upper-case characters are used and @code{0X}
2156and @code{P} are used for the representation of prefix and exponent
2157string. The exponent to the base of two is printed as a decimal number
2158using at least one digit but at most as many digits as necessary to
2159represent the value exactly.
2160
2161If the value to be printed represents infinity or a NaN, the output is
2162@w{[@code{-}]@code{inf}} or @code{nan} respectively if the conversion
2163specifier is @samp{%a}, @samp{%e}, @samp{%f}, or @samp{%g} and it is
2164@w{[@code{-}]@code{INF}} or @code{NAN} respectively if the conversion is
2165@samp{%A}, @samp{%E}, or @samp{%G}.
2166
28f540f4
RM
2167The following flags can be used to modify the behavior:
2168
2169@comment We use @asis instead of @samp so we can have ` ' as an item.
2170@table @asis
2171@item @samp{-}
2172Left-justify the result in the field. Normally the result is
2173right-justified.
2174
2175@item @samp{+}
2176Always include a plus or minus sign in the result.
2177
2178@item @samp{ }
2179If the result doesn't start with a plus or minus sign, prefix it with a
2180space instead. Since the @samp{+} flag ensures that the result includes
2181a sign, this flag is ignored if you supply both of them.
2182
2183@item @samp{#}
2184Specifies that the result should always include a decimal point, even
2185if no digits follow it. For the @samp{%g} and @samp{%G} conversions,
2186this also forces trailing zeros after the decimal point to be left
2187in place where they would otherwise be removed.
2188
2189@item @samp{'}
2190Separate the digits of the integer part of the result into groups as
2191specified by the locale specified for the @code{LC_NUMERIC} category;
2192@pxref{General Numeric}. This flag is a GNU extension.
2193
2194@item @samp{0}
2195Pad the field with zeros instead of spaces; the zeros are placed
2196after any sign. This flag is ignored if the @samp{-} flag is also
2197specified.
2198@end table
2199
2200The precision specifies how many digits follow the decimal-point
2201character for the @samp{%f}, @samp{%e}, and @samp{%E} conversions. For
2202these conversions, the default precision is @code{6}. If the precision
2203is explicitly @code{0}, this suppresses the decimal point character
2204entirely. For the @samp{%g} and @samp{%G} conversions, the precision
2205specifies how many significant digits to print. Significant digits are
2206the first digit before the decimal point, and all the digits after it.
91ea72b7 2207If the precision is @code{0} or not specified for @samp{%g} or @samp{%G},
28f540f4
RM
2208it is treated like a value of @code{1}. If the value being printed
2209cannot be expressed accurately in the specified number of digits, the
2210value is rounded to the nearest number that fits.
2211
2212Without a type modifier, the floating-point conversions use an argument
2213of type @code{double}. (By the default argument promotions, any
2214@code{float} arguments are automatically converted to @code{double}.)
2215The following type modifier is supported:
2216
2217@table @samp
2218@item L
2219An uppercase @samp{L} specifies that the argument is a @code{long
2220double}.
2221@end table
2222
2223Here are some examples showing how numbers print using the various
2224floating-point conversions. All of the numbers were printed using
2225this template string:
2226
2227@smallexample
2f6d1f1b 2228"|%13.4a|%13.4f|%13.4e|%13.4g|\n"
28f540f4
RM
2229@end smallexample
2230
2231Here is the output:
2232
2233@smallexample
2f6d1f1b
UD
2234| 0x0.0000p+0| 0.0000| 0.0000e+00| 0|
2235| 0x1.0000p-1| 0.5000| 5.0000e-01| 0.5|
2236| 0x1.0000p+0| 1.0000| 1.0000e+00| 1|
2237| -0x1.0000p+0| -1.0000| -1.0000e+00| -1|
2238| 0x1.9000p+6| 100.0000| 1.0000e+02| 100|
2239| 0x1.f400p+9| 1000.0000| 1.0000e+03| 1000|
2240| 0x1.3880p+13| 10000.0000| 1.0000e+04| 1e+04|
2241| 0x1.81c8p+13| 12345.0000| 1.2345e+04| 1.234e+04|
2242| 0x1.86a0p+16| 100000.0000| 1.0000e+05| 1e+05|
2243| 0x1.e240p+16| 123456.0000| 1.2346e+05| 1.235e+05|
28f540f4
RM
2244@end smallexample
2245
2246Notice how the @samp{%g} conversion drops trailing zeros.
2247
2248@node Other Output Conversions
2249@subsection Other Output Conversions
2250
2251This section describes miscellaneous conversions for @code{printf}.
2252
b5e73f56
UD
2253The @samp{%c} conversion prints a single character. In case there is no
2254@samp{l} modifier the @code{int} argument is first converted to an
2255@code{unsigned char}. Then, if used in a wide stream function, the
2256character is converted into the corresponding wide character. The
2257@samp{-} flag can be used to specify left-justification in the field,
2258but no other flags are defined, and no precision or type modifier can be
2259given. For example:
28f540f4
RM
2260
2261@smallexample
2262printf ("%c%c%c%c%c", 'h', 'e', 'l', 'l', 'o');
2263@end smallexample
2264
2265@noindent
2266prints @samp{hello}.
2267
c703cd7a 2268If there is an @samp{l} modifier present the argument is expected to be
b5e73f56
UD
2269of type @code{wint_t}. If used in a multibyte function the wide
2270character is converted into a multibyte character before being added to
2271the output. In this case more than one output byte can be produced.
2272
2273The @samp{%s} conversion prints a string. If no @samp{l} modifier is
2274present the corresponding argument must be of type @code{char *} (or
2275@code{const char *}). If used in a wide stream function the string is
c703cd7a 2276first converted to a wide character string. A precision can be
b5e73f56 2277specified to indicate the maximum number of characters to write;
28f540f4
RM
2278otherwise characters in the string up to but not including the
2279terminating null character are written to the output stream. The
2280@samp{-} flag can be used to specify left-justification in the field,
2281but no other flags or type modifiers are defined for this conversion.
2282For example:
2283
2284@smallexample
2285printf ("%3s%-6s", "no", "where");
2286@end smallexample
2287
2288@noindent
2289prints @samp{ nowhere }.
2290
c703cd7a
RJ
2291If there is an @samp{l} modifier present, the argument is expected to
2292be of type @code{wchar_t} (or @code{const wchar_t *}).
b5e73f56 2293
28f540f4 2294If you accidentally pass a null pointer as the argument for a @samp{%s}
1f77f049 2295conversion, @theglibc{} prints it as @samp{(null)}. We think this
28f540f4
RM
2296is more useful than crashing. But it's not good practice to pass a null
2297argument intentionally.
2298
2299The @samp{%m} conversion prints the string corresponding to the error
2300code in @code{errno}. @xref{Error Messages}. Thus:
2301
2302@smallexample
2303fprintf (stderr, "can't open `%s': %m\n", filename);
2304@end smallexample
2305
2306@noindent
2307is equivalent to:
2308
2309@smallexample
2310fprintf (stderr, "can't open `%s': %s\n", filename, strerror (errno));
2311@end smallexample
2312
2313@noindent
1f77f049 2314The @samp{%m} conversion is a @glibcadj{} extension.
28f540f4
RM
2315
2316The @samp{%p} conversion prints a pointer value. The corresponding
2317argument must be of type @code{void *}. In practice, you can use any
2318type of pointer.
2319
a7a93d50 2320In @theglibc{}, non-null pointers are printed as unsigned integers,
28f540f4
RM
2321as if a @samp{%#x} conversion were used. Null pointers print as
2322@samp{(nil)}. (Pointers might print differently in other systems.)
2323
2324For example:
2325
2326@smallexample
2327printf ("%p", "testing");
2328@end smallexample
2329
2330@noindent
2331prints @samp{0x} followed by a hexadecimal number---the address of the
2332string constant @code{"testing"}. It does not print the word
2333@samp{testing}.
2334
2335You can supply the @samp{-} flag with the @samp{%p} conversion to
2336specify left-justification, but no other flags, precision, or type
2337modifiers are defined.
2338
2339The @samp{%n} conversion is unlike any of the other output conversions.
2340It uses an argument which must be a pointer to an @code{int}, but
2341instead of printing anything it stores the number of characters printed
2342so far by this call at that location. The @samp{h} and @samp{l} type
2343modifiers are permitted to specify that the argument is of type
2344@code{short int *} or @code{long int *} instead of @code{int *}, but no
2345flags, field width, or precision are permitted.
2346
2347For example,
2348
2349@smallexample
2350int nchar;
2351printf ("%d %s%n\n", 3, "bears", &nchar);
2352@end smallexample
2353
2354@noindent
2355prints:
2356
2357@smallexample
23583 bears
2359@end smallexample
2360
2361@noindent
19c3f208 2362and sets @code{nchar} to @code{7}, because @samp{3 bears} is seven
28f540f4
RM
2363characters.
2364
2365
2366The @samp{%%} conversion prints a literal @samp{%} character. This
2367conversion doesn't use an argument, and no flags, field width,
2368precision, or type modifiers are permitted.
2369
2370
2371@node Formatted Output Functions
2372@subsection Formatted Output Functions
2373
2374This section describes how to call @code{printf} and related functions.
2375Prototypes for these functions are in the header file @file{stdio.h}.
2376Because these functions take a variable number of arguments, you
2377@emph{must} declare prototypes for them before using them. Of course,
2378the easiest way to make sure you have all the right prototypes is to
2379just include @file{stdio.h}.
2380@pindex stdio.h
2381
2382@comment stdio.h
f65fd747 2383@comment ISO
28f540f4 2384@deftypefun int printf (const char *@var{template}, @dots{})
171e9210 2385@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
28f540f4
RM
2386The @code{printf} function prints the optional arguments under the
2387control of the template string @var{template} to the stream
2388@code{stdout}. It returns the number of characters printed, or a
2389negative value if there was an output error.
2390@end deftypefun
2391
b5e73f56
UD
2392@comment wchar.h
2393@comment ISO
2394@deftypefun int wprintf (const wchar_t *@var{template}, @dots{})
171e9210 2395@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
2396The @code{wprintf} function prints the optional arguments under the
2397control of the wide template string @var{template} to the stream
2398@code{stdout}. It returns the number of wide characters printed, or a
2399negative value if there was an output error.
2400@end deftypefun
2401
28f540f4 2402@comment stdio.h
f65fd747 2403@comment ISO
28f540f4 2404@deftypefun int fprintf (FILE *@var{stream}, const char *@var{template}, @dots{})
171e9210 2405@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
28f540f4
RM
2406This function is just like @code{printf}, except that the output is
2407written to the stream @var{stream} instead of @code{stdout}.
2408@end deftypefun
2409
b5e73f56
UD
2410@comment wchar.h
2411@comment ISO
2412@deftypefun int fwprintf (FILE *@var{stream}, const wchar_t *@var{template}, @dots{})
171e9210 2413@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
2414This function is just like @code{wprintf}, except that the output is
2415written to the stream @var{stream} instead of @code{stdout}.
2416@end deftypefun
2417
28f540f4 2418@comment stdio.h
f65fd747 2419@comment ISO
28f540f4 2420@deftypefun int sprintf (char *@var{s}, const char *@var{template}, @dots{})
171e9210 2421@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
2422This is like @code{printf}, except that the output is stored in the character
2423array @var{s} instead of written to a stream. A null character is written
2424to mark the end of the string.
2425
2426The @code{sprintf} function returns the number of characters stored in
2427the array @var{s}, not including the terminating null character.
2428
2429The behavior of this function is undefined if copying takes place
2430between objects that overlap---for example, if @var{s} is also given
2431as an argument to be printed under control of the @samp{%s} conversion.
0a13c9e9 2432@xref{Copying Strings and Arrays}.
28f540f4
RM
2433
2434@strong{Warning:} The @code{sprintf} function can be @strong{dangerous}
2435because it can potentially output more characters than can fit in the
2436allocation size of the string @var{s}. Remember that the field width
2437given in a conversion specification is only a @emph{minimum} value.
2438
2439To avoid this problem, you can use @code{snprintf} or @code{asprintf},
2440described below.
2441@end deftypefun
2442
b5e73f56
UD
2443@comment wchar.h
2444@comment GNU
c703cd7a 2445@deftypefun int swprintf (wchar_t *@var{ws}, size_t @var{size}, const wchar_t *@var{template}, @dots{})
171e9210 2446@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
b5e73f56
UD
2447This is like @code{wprintf}, except that the output is stored in the
2448wide character array @var{ws} instead of written to a stream. A null
2449wide character is written to mark the end of the string. The @var{size}
2450argument specifies the maximum number of characters to produce. The
2451trailing null character is counted towards this limit, so you should
2452allocate at least @var{size} wide characters for the string @var{ws}.
2453
2f278c94
UD
2454The return value is the number of characters generated for the given
2455input, excluding the trailing null. If not all output fits into the
2456provided buffer a negative value is returned. You should try again with
2457a bigger output string. @emph{Note:} this is different from how
2458@code{snprintf} handles this situation.
b5e73f56
UD
2459
2460Note that the corresponding narrow stream function takes fewer
2461parameters. @code{swprintf} in fact corresponds to the @code{snprintf}
2462function. Since the @code{sprintf} function can be dangerous and should
2463be avoided the @w{ISO C} committee refused to make the same mistake
9dcc8f11 2464again and decided to not define a function exactly corresponding to
b5e73f56
UD
2465@code{sprintf}.
2466@end deftypefun
2467
28f540f4
RM
2468@comment stdio.h
2469@comment GNU
2470@deftypefun int snprintf (char *@var{s}, size_t @var{size}, const char *@var{template}, @dots{})
171e9210 2471@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
2472The @code{snprintf} function is similar to @code{sprintf}, except that
2473the @var{size} argument specifies the maximum number of characters to
2474produce. The trailing null character is counted towards this limit, so
2475you should allocate at least @var{size} characters for the string @var{s}.
42443a47
JL
2476If @var{size} is zero, nothing, not even the null byte, shall be written and
2477@var{s} may be a null pointer.
28f540f4 2478
fe7bdd63 2479The return value is the number of characters which would be generated
da2d1bc5 2480for the given input, excluding the trailing null. If this value is
c703cd7a 2481greater than or equal to @var{size}, not all characters from the result have
da2d1bc5
UD
2482been stored in @var{s}. You should try again with a bigger output
2483string. Here is an example of doing this:
28f540f4
RM
2484
2485@smallexample
2486@group
2487/* @r{Construct a message describing the value of a variable}
2488 @r{whose name is @var{name} and whose value is @var{value}.} */
2489char *
2490make_message (char *name, char *value)
2491@{
2492 /* @r{Guess we need no more than 100 chars of space.} */
2493 int size = 100;
2494 char *buffer = (char *) xmalloc (size);
4cca6b86 2495 int nchars;
28f540f4
RM
2496@end group
2497@group
7ba73c63
UD
2498 if (buffer == NULL)
2499 return NULL;
2500
4cca6b86
UD
2501 /* @r{Try to print in the allocated space.} */
2502 nchars = snprintf (buffer, size, "value of %s is %s",
162ba701 2503 name, value);
4cca6b86
UD
2504@end group
2505@group
fe7bdd63 2506 if (nchars >= size)
28f540f4 2507 @{
4b8f94d3 2508 /* @r{Reallocate buffer now that we know
162ba701 2509 how much space is needed.} */
53631fa8
UD
2510 size = nchars + 1;
2511 buffer = (char *) xrealloc (buffer, size);
4cca6b86 2512
7ba73c63 2513 if (buffer != NULL)
162ba701
PIM
2514 /* @r{Try again.} */
2515 snprintf (buffer, size, "value of %s is %s",
2516 name, value);
28f540f4 2517 @}
4cca6b86
UD
2518 /* @r{The last call worked, return the string.} */
2519 return buffer;
28f540f4
RM
2520@}
2521@end group
2522@end smallexample
2523
2524In practice, it is often easier just to use @code{asprintf}, below.
fb971363 2525
1f77f049 2526@strong{Attention:} In versions of @theglibc{} prior to 2.1 the
5a74e68a
UD
2527return value is the number of characters stored, not including the
2528terminating null; unless there was not enough space in @var{s} to
2529store the result in which case @code{-1} is returned. This was
2530changed in order to comply with the @w{ISO C99} standard.
28f540f4
RM
2531@end deftypefun
2532
2533@node Dynamic Output
2534@subsection Dynamically Allocating Formatted Output
2535
2536The functions in this section do formatted output and place the results
2537in dynamically allocated memory.
2538
2539@comment stdio.h
2540@comment GNU
2541@deftypefun int asprintf (char **@var{ptr}, const char *@var{template}, @dots{})
171e9210 2542@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
2543This function is similar to @code{sprintf}, except that it dynamically
2544allocates a string (as with @code{malloc}; @pxref{Unconstrained
2545Allocation}) to hold the output, instead of putting the output in a
2546buffer you allocate in advance. The @var{ptr} argument should be the
3a4e0609
UD
2547address of a @code{char *} object, and a successful call to
2548@code{asprintf} stores a pointer to the newly allocated string at that
2549location.
28f540f4 2550
7ba73c63 2551The return value is the number of characters allocated for the buffer, or
cf822e3c 2552less than zero if an error occurred. Usually this means that the buffer
7ba73c63
UD
2553could not be allocated.
2554
28f540f4
RM
2555Here is how to use @code{asprintf} to get the same result as the
2556@code{snprintf} example, but more easily:
2557
2558@smallexample
2559/* @r{Construct a message describing the value of a variable}
2560 @r{whose name is @var{name} and whose value is @var{value}.} */
2561char *
2562make_message (char *name, char *value)
2563@{
2564 char *result;
7ba73c63
UD
2565 if (asprintf (&result, "value of %s is %s", name, value) < 0)
2566 return NULL;
28f540f4
RM
2567 return result;
2568@}
2569@end smallexample
2570@end deftypefun
2571
2572@comment stdio.h
2573@comment GNU
2574@deftypefun int obstack_printf (struct obstack *@var{obstack}, const char *@var{template}, @dots{})
171e9210 2575@safety{@prelim{}@mtsafe{@mtsrace{:obstack} @mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
28f540f4
RM
2576This function is similar to @code{asprintf}, except that it uses the
2577obstack @var{obstack} to allocate the space. @xref{Obstacks}.
2578
2579The characters are written onto the end of the current object.
2580To get at them, you must finish the object with @code{obstack_finish}
2581(@pxref{Growing Objects}).@refill
2582@end deftypefun
2583
2584@node Variable Arguments Output
2585@subsection Variable Arguments Output Functions
2586
2587The functions @code{vprintf} and friends are provided so that you can
2588define your own variadic @code{printf}-like functions that make use of
2589the same internals as the built-in formatted output functions.
2590
2591The most natural way to define such functions would be to use a language
2592construct to say, ``Call @code{printf} and pass this template plus all
2593of my arguments after the first five.'' But there is no way to do this
2594in C, and it would be hard to provide a way, since at the C language
2595level there is no way to tell how many arguments your function received.
2596
2597Since that method is impossible, we provide alternative functions, the
2598@code{vprintf} series, which lets you pass a @code{va_list} to describe
2599``all of my arguments after the first five.''
2600
19c3f208 2601When it is sufficient to define a macro rather than a real function,
28f540f4
RM
2602the GNU C compiler provides a way to do this much more easily with macros.
2603For example:
2604
2605@smallexample
838e5ffe 2606#define myprintf(a, b, c, d, e, rest...) \
162ba701 2607 printf (mytemplate , ## rest)
28f540f4
RM
2608@end smallexample
2609
2610@noindent
9229b83e
RM
2611@xref{Variadic Macros,,, cpp, The C preprocessor}, for details.
2612But this is limited to macros, and does not apply to real functions at all.
28f540f4
RM
2613
2614Before calling @code{vprintf} or the other functions listed in this
2615section, you @emph{must} call @code{va_start} (@pxref{Variadic
2616Functions}) to initialize a pointer to the variable arguments. Then you
2617can call @code{va_arg} to fetch the arguments that you want to handle
2618yourself. This advances the pointer past those arguments.
2619
2620Once your @code{va_list} pointer is pointing at the argument of your
2621choice, you are ready to call @code{vprintf}. That argument and all
2622subsequent arguments that were passed to your function are used by
2623@code{vprintf} along with the template that you specified separately.
2624
f546f87c
FW
2625@strong{Portability Note:} The value of the @code{va_list} pointer is
2626undetermined after the call to @code{vprintf}, so you must not use
2627@code{va_arg} after you call @code{vprintf}. Instead, you should call
2628@code{va_end} to retire the pointer from service. You can call
2629@code{va_start} again and begin fetching the arguments from the start of
2630the variable argument list. (Alternatively, you can use @code{va_copy}
2631to make a copy of the @code{va_list} pointer before calling
2632@code{vfprintf}.) Calling @code{vprintf} does not destroy the argument
2633list of your function, merely the particular pointer that you passed to
2634it.
28f540f4
RM
2635
2636Prototypes for these functions are declared in @file{stdio.h}.
2637@pindex stdio.h
2638
2639@comment stdio.h
f65fd747 2640@comment ISO
28f540f4 2641@deftypefun int vprintf (const char *@var{template}, va_list @var{ap})
171e9210 2642@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
28f540f4
RM
2643This function is similar to @code{printf} except that, instead of taking
2644a variable number of arguments directly, it takes an argument list
2645pointer @var{ap}.
2646@end deftypefun
2647
b5e73f56
UD
2648@comment wchar.h
2649@comment ISO
2650@deftypefun int vwprintf (const wchar_t *@var{template}, va_list @var{ap})
171e9210 2651@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
2652This function is similar to @code{wprintf} except that, instead of taking
2653a variable number of arguments directly, it takes an argument list
2654pointer @var{ap}.
2655@end deftypefun
2656
28f540f4 2657@comment stdio.h
f65fd747 2658@comment ISO
28f540f4 2659@deftypefun int vfprintf (FILE *@var{stream}, const char *@var{template}, va_list @var{ap})
171e9210
AO
2660@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
2661@c Although vfprintf sets up a cleanup region to release the lock on the
2662@c output stream, it doesn't use it to release args_value or string in
2663@c case of cancellation. This doesn't make it unsafe, but cancelling it
2664@c may leak memory. The unguarded use of __printf_function_table is
2665@c also of concern for all callers.
2666@c _itoa ok
2667@c _udiv_qrnnd_preinv ok
2668@c group_number ok
2669@c _i18n_number_rewrite
2670@c __wctrans ok
2671@c __towctrans @mtslocale
2672@c __wcrtomb ok? dup below
2673@c outdigit_value ok
2674@c outdigitwc_value ok
2675@c outchar ok
2676@c outstring ok
2677@c PAD ok
2678@c __printf_fp @mtslocale @ascuheap @acsmem
2679@c __printf_fphex @mtslocale
2680@c __readonly_area
2681@c [GNU/Linux] fopen, strtoul, free
2682@c __strerror_r ok if no translation, check otherwise
2683@c __btowc ? gconv-modules
2684@c __wcrtomb ok (not using internal state) gconv-modules
2685@c ARGCHECK
2686@c UNBUFFERED_P (tested before taking the stream lock)
2687@c buffered_vfprintf ok
2688@c __find_spec(wc|mb)
2689@c read_int
2690@c __libc_use_alloca
2691@c process_arg
2692@c process_string_arg
2693@c extend_alloca
2694@c __parse_one_spec(wc|mb)
2695@c *__printf_arginfo_table unguarded
2696@c __printf_va_arg_table-> unguarded
2697@c *__printf_function_table unguarded
2698@c done_add
2699@c printf_unknown
2700@c outchar
2701@c _itoa_word
28f540f4
RM
2702This is the equivalent of @code{fprintf} with the variable argument list
2703specified directly as for @code{vprintf}.
2704@end deftypefun
2705
b5e73f56
UD
2706@comment wchar.h
2707@comment ISO
2708@deftypefun int vfwprintf (FILE *@var{stream}, const wchar_t *@var{template}, va_list @var{ap})
171e9210 2709@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
2710This is the equivalent of @code{fwprintf} with the variable argument list
2711specified directly as for @code{vwprintf}.
2712@end deftypefun
2713
28f540f4 2714@comment stdio.h
f65fd747 2715@comment ISO
28f540f4 2716@deftypefun int vsprintf (char *@var{s}, const char *@var{template}, va_list @var{ap})
171e9210 2717@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
2718This is the equivalent of @code{sprintf} with the variable argument list
2719specified directly as for @code{vprintf}.
2720@end deftypefun
2721
b5e73f56
UD
2722@comment wchar.h
2723@comment GNU
c703cd7a 2724@deftypefun int vswprintf (wchar_t *@var{ws}, size_t @var{size}, const wchar_t *@var{template}, va_list @var{ap})
171e9210 2725@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
b5e73f56
UD
2726This is the equivalent of @code{swprintf} with the variable argument list
2727specified directly as for @code{vwprintf}.
2728@end deftypefun
2729
28f540f4
RM
2730@comment stdio.h
2731@comment GNU
2732@deftypefun int vsnprintf (char *@var{s}, size_t @var{size}, const char *@var{template}, va_list @var{ap})
171e9210 2733@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
2734This is the equivalent of @code{snprintf} with the variable argument list
2735specified directly as for @code{vprintf}.
2736@end deftypefun
2737
2738@comment stdio.h
2739@comment GNU
2740@deftypefun int vasprintf (char **@var{ptr}, const char *@var{template}, va_list @var{ap})
171e9210 2741@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
2742The @code{vasprintf} function is the equivalent of @code{asprintf} with the
2743variable argument list specified directly as for @code{vprintf}.
2744@end deftypefun
2745
2746@comment stdio.h
2747@comment GNU
2748@deftypefun int obstack_vprintf (struct obstack *@var{obstack}, const char *@var{template}, va_list @var{ap})
171e9210
AO
2749@safety{@prelim{}@mtsafe{@mtsrace{:obstack} @mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
2750@c The obstack is not guarded by mutexes, it might be at an inconsistent
2751@c state within a signal handler, and it could be left at an
2752@c inconsistent state in case of cancellation.
28f540f4
RM
2753The @code{obstack_vprintf} function is the equivalent of
2754@code{obstack_printf} with the variable argument list specified directly
2755as for @code{vprintf}.@refill
2756@end deftypefun
2757
2758Here's an example showing how you might use @code{vfprintf}. This is a
2759function that prints error messages to the stream @code{stderr}, along
2760with a prefix indicating the name of the program
19c3f208 2761(@pxref{Error Messages}, for a description of
28f540f4
RM
2762@code{program_invocation_short_name}).
2763
2764@smallexample
2765@group
2766#include <stdio.h>
2767#include <stdarg.h>
2768
2769void
2770eprintf (const char *template, ...)
2771@{
2772 va_list ap;
2773 extern char *program_invocation_short_name;
2774
2775 fprintf (stderr, "%s: ", program_invocation_short_name);
4b8f94d3 2776 va_start (ap, template);
28f540f4
RM
2777 vfprintf (stderr, template, ap);
2778 va_end (ap);
2779@}
2780@end group
2781@end smallexample
2782
2783@noindent
2784You could call @code{eprintf} like this:
2785
2786@smallexample
2787eprintf ("file `%s' does not exist\n", filename);
2788@end smallexample
2789
2790In GNU C, there is a special construct you can use to let the compiler
2791know that a function uses a @code{printf}-style format string. Then it
2792can check the number and types of arguments in each call to the
2793function, and warn you when they do not match the format string.
2794For example, take this declaration of @code{eprintf}:
2795
2796@smallexample
2797void eprintf (const char *template, ...)
162ba701 2798 __attribute__ ((format (printf, 1, 2)));
28f540f4
RM
2799@end smallexample
2800
2801@noindent
2802This tells the compiler that @code{eprintf} uses a format string like
2803@code{printf} (as opposed to @code{scanf}; @pxref{Formatted Input});
2804the format string appears as the first argument;
2805and the arguments to satisfy the format begin with the second.
2806@xref{Function Attributes, , Declaring Attributes of Functions,
2807gcc.info, Using GNU CC}, for more information.
2808
2809@node Parsing a Template String
2810@subsection Parsing a Template String
2811@cindex parsing a template string
2812
2813You can use the function @code{parse_printf_format} to obtain
2814information about the number and types of arguments that are expected by
2815a given template string. This function permits interpreters that
2816provide interfaces to @code{printf} to avoid passing along invalid
2817arguments from the user's program, which could cause a crash.
2818
2819All the symbols described in this section are declared in the header
2820file @file{printf.h}.
2821
2822@comment printf.h
2823@comment GNU
2824@deftypefun size_t parse_printf_format (const char *@var{template}, size_t @var{n}, int *@var{argtypes})
171e9210 2825@safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
28f540f4
RM
2826This function returns information about the number and types of
2827arguments expected by the @code{printf} template string @var{template}.
2828The information is stored in the array @var{argtypes}; each element of
2829this array describes one argument. This information is encoded using
2830the various @samp{PA_} macros, listed below.
2831
04b9968b
UD
2832The argument @var{n} specifies the number of elements in the array
2833@var{argtypes}. This is the maximum number of elements that
28f540f4
RM
2834@code{parse_printf_format} will try to write.
2835
2836@code{parse_printf_format} returns the total number of arguments required
2837by @var{template}. If this number is greater than @var{n}, then the
2838information returned describes only the first @var{n} arguments. If you
04b9968b 2839want information about additional arguments, allocate a bigger
28f540f4
RM
2840array and call @code{parse_printf_format} again.
2841@end deftypefun
2842
2843The argument types are encoded as a combination of a basic type and
2844modifier flag bits.
2845
2846@comment printf.h
2847@comment GNU
2848@deftypevr Macro int PA_FLAG_MASK
2849This macro is a bitmask for the type modifier flag bits. You can write
2850the expression @code{(argtypes[i] & PA_FLAG_MASK)} to extract just the
2851flag bits for an argument, or @code{(argtypes[i] & ~PA_FLAG_MASK)} to
2852extract just the basic type code.
2853@end deftypevr
2854
2855Here are symbolic constants that represent the basic types; they stand
2856for integer values.
2857
779ae82e 2858@vtable @code
28f540f4
RM
2859@comment printf.h
2860@comment GNU
2861@item PA_INT
28f540f4
RM
2862This specifies that the base type is @code{int}.
2863
2864@comment printf.h
2865@comment GNU
2866@item PA_CHAR
28f540f4
RM
2867This specifies that the base type is @code{int}, cast to @code{char}.
2868
2869@comment printf.h
2870@comment GNU
2871@item PA_STRING
28f540f4
RM
2872This specifies that the base type is @code{char *}, a null-terminated string.
2873
2874@comment printf.h
2875@comment GNU
2876@item PA_POINTER
28f540f4
RM
2877This specifies that the base type is @code{void *}, an arbitrary pointer.
2878
2879@comment printf.h
2880@comment GNU
2881@item PA_FLOAT
28f540f4
RM
2882This specifies that the base type is @code{float}.
2883
2884@comment printf.h
2885@comment GNU
2886@item PA_DOUBLE
28f540f4
RM
2887This specifies that the base type is @code{double}.
2888
2889@comment printf.h
2890@comment GNU
2891@item PA_LAST
28f540f4
RM
2892You can define additional base types for your own programs as offsets
2893from @code{PA_LAST}. For example, if you have data types @samp{foo}
2894and @samp{bar} with their own specialized @code{printf} conversions,
2895you could define encodings for these types as:
2896
2897@smallexample
2898#define PA_FOO PA_LAST
2899#define PA_BAR (PA_LAST + 1)
2900@end smallexample
779ae82e 2901@end vtable
28f540f4
RM
2902
2903Here are the flag bits that modify a basic type. They are combined with
2904the code for the basic type using inclusive-or.
2905
779ae82e 2906@vtable @code
28f540f4
RM
2907@comment printf.h
2908@comment GNU
2909@item PA_FLAG_PTR
28f540f4
RM
2910If this bit is set, it indicates that the encoded type is a pointer to
2911the base type, rather than an immediate value.
2912For example, @samp{PA_INT|PA_FLAG_PTR} represents the type @samp{int *}.
2913
2914@comment printf.h
2915@comment GNU
2916@item PA_FLAG_SHORT
28f540f4
RM
2917If this bit is set, it indicates that the base type is modified with
2918@code{short}. (This corresponds to the @samp{h} type modifier.)
2919
2920@comment printf.h
2921@comment GNU
2922@item PA_FLAG_LONG
28f540f4
RM
2923If this bit is set, it indicates that the base type is modified with
2924@code{long}. (This corresponds to the @samp{l} type modifier.)
2925
2926@comment printf.h
2927@comment GNU
2928@item PA_FLAG_LONG_LONG
28f540f4
RM
2929If this bit is set, it indicates that the base type is modified with
2930@code{long long}. (This corresponds to the @samp{L} type modifier.)
2931
2932@comment printf.h
2933@comment GNU
2934@item PA_FLAG_LONG_DOUBLE
28f540f4
RM
2935This is a synonym for @code{PA_FLAG_LONG_LONG}, used by convention with
2936a base type of @code{PA_DOUBLE} to indicate a type of @code{long double}.
779ae82e 2937@end vtable
28f540f4
RM
2938
2939@ifinfo
6d52618b 2940For an example of using these facilities, see @ref{Example of Parsing}.
28f540f4
RM
2941@end ifinfo
2942
2943@node Example of Parsing
2944@subsection Example of Parsing a Template String
2945
2946Here is an example of decoding argument types for a format string. We
2947assume this is part of an interpreter which contains arguments of type
2948@code{NUMBER}, @code{CHAR}, @code{STRING} and @code{STRUCTURE} (and
2949perhaps others which are not valid here).
2950
2951@smallexample
2952/* @r{Test whether the @var{nargs} specified objects}
2953 @r{in the vector @var{args} are valid}
2954 @r{for the format string @var{format}:}
2955 @r{if so, return 1.}
2956 @r{If not, return 0 after printing an error message.} */
2957
2958int
2959validate_args (char *format, int nargs, OBJECT *args)
2960@{
2961 int *argtypes;
2962 int nwanted;
2963
2964 /* @r{Get the information about the arguments.}
2965 @r{Each conversion specification must be at least two characters}
2966 @r{long, so there cannot be more specifications than half the}
2967 @r{length of the string.} */
2968
2969 argtypes = (int *) alloca (strlen (format) / 2 * sizeof (int));
2970 nwanted = parse_printf_format (string, nelts, argtypes);
2971
2972 /* @r{Check the number of arguments.} */
2973 if (nwanted > nargs)
2974 @{
2975 error ("too few arguments (at least %d required)", nwanted);
2976 return 0;
2977 @}
19c3f208 2978
28f540f4
RM
2979 /* @r{Check the C type wanted for each argument}
2980 @r{and see if the object given is suitable.} */
2981 for (i = 0; i < nwanted; i++)
2982 @{
2983 int wanted;
2984
2985 if (argtypes[i] & PA_FLAG_PTR)
162ba701 2986 wanted = STRUCTURE;
28f540f4 2987 else
162ba701
PIM
2988 switch (argtypes[i] & ~PA_FLAG_MASK)
2989 @{
2990 case PA_INT:
2991 case PA_FLOAT:
2992 case PA_DOUBLE:
2993 wanted = NUMBER;
2994 break;
2995 case PA_CHAR:
2996 wanted = CHAR;
2997 break;
2998 case PA_STRING:
2999 wanted = STRING;
3000 break;
3001 case PA_POINTER:
3002 wanted = STRUCTURE;
3003 break;
3004 @}
28f540f4 3005 if (TYPE (args[i]) != wanted)
162ba701
PIM
3006 @{
3007 error ("type mismatch for arg number %d", i);
3008 return 0;
3009 @}
28f540f4
RM
3010 @}
3011 return 1;
3012@}
3013@end smallexample
3014
3015@node Customizing Printf
3016@section Customizing @code{printf}
3017@cindex customizing @code{printf}
3018@cindex defining new @code{printf} conversions
3019@cindex extending @code{printf}
3020
1f77f049 3021@Theglibc{} lets you define your own custom conversion specifiers
28f540f4
RM
3022for @code{printf} template strings, to teach @code{printf} clever ways
3023to print the important data structures of your program.
3024
3025The way you do this is by registering the conversion with the function
3026@code{register_printf_function}; see @ref{Registering New Conversions}.
3027One of the arguments you pass to this function is a pointer to a handler
3028function that produces the actual output; see @ref{Defining the Output
3029Handler}, for information on how to write this function.
3030
3031You can also install a function that just returns information about the
3032number and type of arguments expected by the conversion specifier.
3033@xref{Parsing a Template String}, for information about this.
3034
3035The facilities of this section are declared in the header file
3036@file{printf.h}.
3037
3038@menu
19c3f208 3039* Registering New Conversions:: Using @code{register_printf_function}
162ba701 3040 to register a new output conversion.
28f540f4 3041* Conversion Specifier Options:: The handler must be able to get
162ba701
PIM
3042 the options specified in the
3043 template when it is called.
28f540f4 3044* Defining the Output Handler:: Defining the handler and arginfo
162ba701
PIM
3045 functions that are passed as arguments
3046 to @code{register_printf_function}.
28f540f4 3047* Printf Extension Example:: How to define a @code{printf}
162ba701 3048 handler function.
29bb8719 3049* Predefined Printf Handlers:: Predefined @code{printf} handlers.
28f540f4
RM
3050@end menu
3051
3052@strong{Portability Note:} The ability to extend the syntax of
f65fd747 3053@code{printf} template strings is a GNU extension. ISO standard C has
28f540f4
RM
3054nothing similar.
3055
3056@node Registering New Conversions
3057@subsection Registering New Conversions
3058
3059The function to register a new output conversion is
3060@code{register_printf_function}, declared in @file{printf.h}.
3061@pindex printf.h
3062
3063@comment printf.h
3064@comment GNU
3065@deftypefun int register_printf_function (int @var{spec}, printf_function @var{handler-function}, printf_arginfo_function @var{arginfo-function})
171e9210
AO
3066@safety{@prelim{}@mtunsafe{@mtasuconst{:printfext}}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@acsmem{} @aculock{}}}
3067@c This function is guarded by the global non-recursive libc lock, but
3068@c users of the variables it sets aren't, and those should be MT-Safe,
3069@c so we're ruling out the use of this extension with threads. Calling
3070@c it from a signal handler may self-deadlock, and cancellation may
3071@c leave the lock held, besides leaking allocated memory.
28f540f4 3072This function defines the conversion specifier character @var{spec}.
42be70d4 3073Thus, if @var{spec} is @code{'Y'}, it defines the conversion @samp{%Y}.
28f540f4
RM
3074You can redefine the built-in conversions like @samp{%s}, but flag
3075characters like @samp{#} and type modifiers like @samp{l} can never be
3076used as conversions; calling @code{register_printf_function} for those
42be70d4
UD
3077characters has no effect. It is advisable not to use lowercase letters,
3078since the ISO C standard warns that additional lowercase letters may be
3079standardized in future editions of the standard.
28f540f4
RM
3080
3081The @var{handler-function} is the function called by @code{printf} and
3082friends when this conversion appears in a template string.
3083@xref{Defining the Output Handler}, for information about how to define
3084a function to pass as this argument. If you specify a null pointer, any
3085existing handler function for @var{spec} is removed.
3086
3087The @var{arginfo-function} is the function called by
3088@code{parse_printf_format} when this conversion appears in a
3089template string. @xref{Parsing a Template String}, for information
3090about this.
3091
54d79e99
UD
3092@c The following is not true anymore. The `parse_printf_format' function
3093@c is now also called from `vfprintf' via `parse_one_spec'.
3094@c --drepper@gnu, 1996/11/14
3095@c
3096@c Normally, you install both functions for a conversion at the same time,
3097@c but if you are never going to call @code{parse_printf_format}, you do
3098@c not need to define an arginfo function.
3099
1f77f049 3100@strong{Attention:} In @theglibc{} versions before 2.0 the
54d79e99 3101@var{arginfo-function} function did not need to be installed unless
04b9968b 3102the user used the @code{parse_printf_format} function. This has changed.
54d79e99
UD
3103Now a call to any of the @code{printf} functions will call this
3104function when this format specifier appears in the format string.
28f540f4
RM
3105
3106The return value is @code{0} on success, and @code{-1} on failure
3107(which occurs if @var{spec} is out of range).
3108
3109You can redefine the standard output conversions, but this is probably
3110not a good idea because of the potential for confusion. Library routines
3111written by other people could break if you do this.
3112@end deftypefun
3113
3114@node Conversion Specifier Options
3115@subsection Conversion Specifier Options
3116
40deae08
RM
3117If you define a meaning for @samp{%A}, what if the template contains
3118@samp{%+23A} or @samp{%-#A}? To implement a sensible meaning for these,
28f540f4
RM
3119the handler when called needs to be able to get the options specified in
3120the template.
3121
838e5ffe
UD
3122Both the @var{handler-function} and @var{arginfo-function} accept an
3123argument that points to a @code{struct printf_info}, which contains
3124information about the options appearing in an instance of the conversion
3125specifier. This data type is declared in the header file
3126@file{printf.h}.
28f540f4
RM
3127@pindex printf.h
3128
3129@comment printf.h
3130@comment GNU
3131@deftp {Type} {struct printf_info}
3132This structure is used to pass information about the options appearing
3133in an instance of a conversion specifier in a @code{printf} template
3134string to the handler and arginfo functions for that specifier. It
3135contains the following members:
3136
3137@table @code
3138@item int prec
3139This is the precision specified. The value is @code{-1} if no precision
3140was specified. If the precision was given as @samp{*}, the
3141@code{printf_info} structure passed to the handler function contains the
3142actual value retrieved from the argument list. But the structure passed
3143to the arginfo function contains a value of @code{INT_MIN}, since the
3144actual value is not known.
3145
3146@item int width
3147This is the minimum field width specified. The value is @code{0} if no
3148width was specified. If the field width was given as @samp{*}, the
3149@code{printf_info} structure passed to the handler function contains the
3150actual value retrieved from the argument list. But the structure passed
3151to the arginfo function contains a value of @code{INT_MIN}, since the
3152actual value is not known.
3153
54d79e99 3154@item wchar_t spec
28f540f4
RM
3155This is the conversion specifier character specified. It's stored in
3156the structure so that you can register the same handler function for
3157multiple characters, but still have a way to tell them apart when the
3158handler function is called.
3159
3160@item unsigned int is_long_double
3161This is a boolean that is true if the @samp{L}, @samp{ll}, or @samp{q}
3162type modifier was specified. For integer conversions, this indicates
3163@code{long long int}, as opposed to @code{long double} for floating
3164point conversions.
3165
d64b6ad0
UD
3166@item unsigned int is_char
3167This is a boolean that is true if the @samp{hh} type modifier was specified.
3168
28f540f4
RM
3169@item unsigned int is_short
3170This is a boolean that is true if the @samp{h} type modifier was specified.
3171
3172@item unsigned int is_long
3173This is a boolean that is true if the @samp{l} type modifier was specified.
3174
3175@item unsigned int alt
3176This is a boolean that is true if the @samp{#} flag was specified.
3177
3178@item unsigned int space
3179This is a boolean that is true if the @samp{ } flag was specified.
3180
3181@item unsigned int left
3182This is a boolean that is true if the @samp{-} flag was specified.
3183
3184@item unsigned int showsign
3185This is a boolean that is true if the @samp{+} flag was specified.
3186
3187@item unsigned int group
3188This is a boolean that is true if the @samp{'} flag was specified.
3189
54d79e99
UD
3190@item unsigned int extra
3191This flag has a special meaning depending on the context. It could
3192be used freely by the user-defined handlers but when called from
3193the @code{printf} function this variable always contains the value
3194@code{0}.
3195
d64b6ad0
UD
3196@item unsigned int wide
3197This flag is set if the stream is wide oriented.
3198
54d79e99 3199@item wchar_t pad
28f540f4
RM
3200This is the character to use for padding the output to the minimum field
3201width. The value is @code{'0'} if the @samp{0} flag was specified, and
3202@code{' '} otherwise.
3203@end table
3204@end deftp
3205
3206
3207@node Defining the Output Handler
3208@subsection Defining the Output Handler
3209
3210Now let's look at how to define the handler and arginfo functions
3211which are passed as arguments to @code{register_printf_function}.
3212
1f77f049 3213@strong{Compatibility Note:} The interface changed in @theglibc{}
54d79e99
UD
3214version 2.0. Previously the third argument was of type
3215@code{va_list *}.
3216
28f540f4
RM
3217You should define your handler functions with a prototype like:
3218
3219@smallexample
3220int @var{function} (FILE *stream, const struct printf_info *info,
162ba701 3221 const void *const *args)
28f540f4
RM
3222@end smallexample
3223
54d79e99 3224The @var{stream} argument passed to the handler function is the stream to
28f540f4
RM
3225which it should write output.
3226
54d79e99 3227The @var{info} argument is a pointer to a structure that contains
28f540f4
RM
3228information about the various options that were included with the
3229conversion in the template string. You should not modify this structure
3230inside your handler function. @xref{Conversion Specifier Options}, for
3231a description of this data structure.
3232
54d79e99
UD
3233@c The following changes some time back. --drepper@gnu, 1996/11/14
3234@c
3235@c The @code{ap_pointer} argument is used to pass the tail of the variable
3236@c argument list containing the values to be printed to your handler.
3237@c Unlike most other functions that can be passed an explicit variable
3238@c argument list, this is a @emph{pointer} to a @code{va_list}, rather than
3239@c the @code{va_list} itself. Thus, you should fetch arguments by
3240@c means of @code{va_arg (*ap_pointer, @var{type})}.
3241@c
3242@c (Passing a pointer here allows the function that calls your handler
3243@c function to update its own @code{va_list} variable to account for the
3244@c arguments that your handler processes. @xref{Variadic Functions}.)
3245
3246The @var{args} is a vector of pointers to the arguments data.
04b9968b 3247The number of arguments was determined by calling the argument
54d79e99 3248information function provided by the user.
28f540f4
RM
3249
3250Your handler function should return a value just like @code{printf}
3251does: it should return the number of characters it has written, or a
3252negative value to indicate an error.
3253
3254@comment printf.h
3255@comment GNU
3256@deftp {Data Type} printf_function
3257This is the data type that a handler function should have.
3258@end deftp
3259
3260If you are going to use @w{@code{parse_printf_format}} in your
54d79e99 3261application, you must also define a function to pass as the
28f540f4 3262@var{arginfo-function} argument for each new conversion you install with
19c3f208 3263@code{register_printf_function}.
28f540f4 3264
54d79e99 3265You have to define these functions with a prototype like:
28f540f4
RM
3266
3267@smallexample
3268int @var{function} (const struct printf_info *info,
162ba701 3269 size_t n, int *argtypes)
28f540f4
RM
3270@end smallexample
3271
3272The return value from the function should be the number of arguments the
3273conversion expects. The function should also fill in no more than
3274@var{n} elements of the @var{argtypes} array with information about the
3275types of each of these arguments. This information is encoded using the
3276various @samp{PA_} macros. (You will notice that this is the same
3277calling convention @code{parse_printf_format} itself uses.)
3278
3279@comment printf.h
3280@comment GNU
3281@deftp {Data Type} printf_arginfo_function
3282This type is used to describe functions that return information about
3283the number and type of arguments used by a conversion specifier.
3284@end deftp
3285
3286@node Printf Extension Example
3287@subsection @code{printf} Extension Example
3288
3289Here is an example showing how to define a @code{printf} handler function.
19c3f208 3290This program defines a data structure called a @code{Widget} and
28f540f4
RM
3291defines the @samp{%W} conversion to print information about @w{@code{Widget *}}
3292arguments, including the pointer value and the name stored in the data
3293structure. The @samp{%W} conversion supports the minimum field width and
3294left-justification options, but ignores everything else.
3295
3296@smallexample
3297@include rprintf.c.texi
3298@end smallexample
3299
3300The output produced by this program looks like:
3301
3302@smallexample
3303|<Widget 0xffeffb7c: mywidget>|
3304| <Widget 0xffeffb7c: mywidget>|
3305|<Widget 0xffeffb7c: mywidget> |
3306@end smallexample
3307
29bb8719
UD
3308@node Predefined Printf Handlers
3309@subsection Predefined @code{printf} Handlers
3310
1f77f049 3311@Theglibc{} also contains a concrete and useful application of the
29bb8719
UD
3312@code{printf} handler extension. There are two functions available
3313which implement a special way to print floating-point numbers.
3314
3315@comment printf.h
3316@comment GNU
3317@deftypefun int printf_size (FILE *@var{fp}, const struct printf_info *@var{info}, const void *const *@var{args})
171e9210
AO
3318@safety{@prelim{}@mtsafe{@mtsrace{:fp} @mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @acucorrupt{}}}
3319@c This is meant to be called by vfprintf, that should hold the lock on
3320@c the stream, but if this function is called directly, output will be
3321@c racy, besides the uses of the global locale object while other
3322@c threads may be changing it and the possbility of leaving the stream
3323@c object in an inconsistent state in case of cancellation.
29bb8719
UD
3324Print a given floating point number as for the format @code{%f} except
3325that there is a postfix character indicating the divisor for the
3326number to make this less than 1000. There are two possible divisors:
04b9968b 3327powers of 1024 or powers of 1000. Which one is used depends on the
29bb8719
UD
3328format character specified while registered this handler. If the
3329character is of lower case, 1024 is used. For upper case characters,
33301000 is used.
3331
3332The postfix tag corresponds to bytes, kilobytes, megabytes, gigabytes,
3333etc. The full table is:
3334
779ae82e 3335@ifinfo
029264d1 3336@multitable {' '} {2^10 (1024)} {zetta} {Upper} {10^24 (1000)}
29bb8719
UD
3337@item low @tab Multiplier @tab From @tab Upper @tab Multiplier
3338@item ' ' @tab 1 @tab @tab ' ' @tab 1
3339@item k @tab 2^10 (1024) @tab kilo @tab K @tab 10^3 (1000)
3340@item m @tab 2^20 @tab mega @tab M @tab 10^6
3341@item g @tab 2^30 @tab giga @tab G @tab 10^9
3342@item t @tab 2^40 @tab tera @tab T @tab 10^12
3343@item p @tab 2^50 @tab peta @tab P @tab 10^15
3344@item e @tab 2^60 @tab exa @tab E @tab 10^18
3345@item z @tab 2^70 @tab zetta @tab Z @tab 10^21
3346@item y @tab 2^80 @tab yotta @tab Y @tab 10^24
3347@end multitable
779ae82e
UD
3348@end ifinfo
3349@iftex
3350@tex
3351\hbox to\hsize{\hfil\vbox{\offinterlineskip
3352\hrule
3353\halign{\strut#& \vrule#\tabskip=1em plus2em& {\tt#}\hfil& \vrule#& #\hfil& \vrule#& #\hfil& \vrule#& {\tt#}\hfil& \vrule#& #\hfil& \vrule#\tabskip=0pt\cr
3354\noalign{\hrule}
3355\omit&height2pt&\omit&&\omit&&\omit&&\omit&&\omit&\cr
3356&& \omit low && Multiplier && From && \omit Upper && Multiplier &\cr
3357\omit&height2pt&\omit&&\omit&&\omit&&\omit&&\omit&\cr
3358\noalign{\hrule}
3359&& {\tt\char32} && 1 && && {\tt\char32} && 1 &\cr
3360&& k && $2^{10} = 1024$ && kilo && K && $10^3 = 1000$ &\cr
3361&& m && $2^{20}$ && mega && M && $10^6$ &\cr
3362&& g && $2^{30}$ && giga && G && $10^9$ &\cr
3363&& t && $2^{40}$ && tera && T && $10^{12}$ &\cr
3364&& p && $2^{50}$ && peta && P && $10^{15}$ &\cr
3365&& e && $2^{60}$ && exa && E && $10^{18}$ &\cr
3366&& z && $2^{70}$ && zetta && Z && $10^{21}$ &\cr
3367&& y && $2^{80}$ && yotta && Y && $10^{24}$ &\cr
3368\noalign{\hrule}}}\hfil}
3369@end tex
3370@end iftex
29bb8719
UD
3371
3372The default precision is 3, i.e., 1024 is printed with a lower-case
3373format character as if it were @code{%.3fk} and will yield @code{1.000k}.
3374@end deftypefun
3375
3376Due to the requirements of @code{register_printf_function} we must also
04b9968b 3377provide the function which returns information about the arguments.
29bb8719
UD
3378
3379@comment printf.h
3380@comment GNU
3381@deftypefun int printf_size_info (const struct printf_info *@var{info}, size_t @var{n}, int *@var{argtypes})
171e9210 3382@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
29bb8719
UD
3383This function will return in @var{argtypes} the information about the
3384used parameters in the way the @code{vfprintf} implementation expects
3385it. The format always takes one argument.
3386@end deftypefun
3387
3388To use these functions both functions must be registered with a call like
3389
3390@smallexample
3391register_printf_function ('B', printf_size, printf_size_info);
3392@end smallexample
3393
3394Here we register the functions to print numbers as powers of 1000 since
f2ea0f5b 3395the format character @code{'B'} is an upper-case character. If we
29bb8719
UD
3396would additionally use @code{'b'} in a line like
3397
3398@smallexample
3399register_printf_function ('b', printf_size, printf_size_info);
3400@end smallexample
3401
3402@noindent
04b9968b
UD
3403we could also print using a power of 1024. Please note that all that is
3404different in these two lines is the format specifier. The
3405@code{printf_size} function knows about the difference between lower and upper
29bb8719
UD
3406case format specifiers.
3407
3408The use of @code{'B'} and @code{'b'} is no coincidence. Rather it is
3409the preferred way to use this functionality since it is available on
04b9968b 3410some other systems which also use format specifiers.
29bb8719 3411
28f540f4
RM
3412@node Formatted Input
3413@section Formatted Input
3414
3415@cindex formatted input from a stream
3416@cindex reading from a stream, formatted
3417@cindex format string, for @code{scanf}
3418@cindex template, for @code{scanf}
3419The functions described in this section (@code{scanf} and related
3420functions) provide facilities for formatted input analogous to the
3421formatted output facilities. These functions provide a mechanism for
3422reading arbitrary values under the control of a @dfn{format string} or
3423@dfn{template string}.
3424
3425@menu
3426* Formatted Input Basics:: Some basics to get you started.
3427* Input Conversion Syntax:: Syntax of conversion specifications.
3428* Table of Input Conversions:: Summary of input conversions and what they do.
3429* Numeric Input Conversions:: Details of conversions for reading numbers.
3430* String Input Conversions:: Details of conversions for reading strings.
3431* Dynamic String Input:: String conversions that @code{malloc} the buffer.
3432* Other Input Conversions:: Details of miscellaneous other conversions.
3433* Formatted Input Functions:: Descriptions of the actual functions.
3434* Variable Arguments Input:: @code{vscanf} and friends.
3435@end menu
3436
3437@node Formatted Input Basics
3438@subsection Formatted Input Basics
3439
3440Calls to @code{scanf} are superficially similar to calls to
3441@code{printf} in that arbitrary arguments are read under the control of
3442a template string. While the syntax of the conversion specifications in
3443the template is very similar to that for @code{printf}, the
3444interpretation of the template is oriented more towards free-format
3445input and simple pattern matching, rather than fixed-field formatting.
3446For example, most @code{scanf} conversions skip over any amount of
3447``white space'' (including spaces, tabs, and newlines) in the input
3448file, and there is no concept of precision for the numeric input
3449conversions as there is for the corresponding output conversions.
3450Ordinarily, non-whitespace characters in the template are expected to
3451match characters in the input stream exactly, but a matching failure is
3452distinct from an input error on the stream.
3453@cindex conversion specifications (@code{scanf})
3454
3455Another area of difference between @code{scanf} and @code{printf} is
3456that you must remember to supply pointers rather than immediate values
3457as the optional arguments to @code{scanf}; the values that are read are
3458stored in the objects that the pointers point to. Even experienced
3459programmers tend to forget this occasionally, so if your program is
3460getting strange errors that seem to be related to @code{scanf}, you
3461might want to double-check this.
3462
3463When a @dfn{matching failure} occurs, @code{scanf} returns immediately,
3464leaving the first non-matching character as the next character to be
3465read from the stream. The normal return value from @code{scanf} is the
3466number of values that were assigned, so you can use this to determine if
3467a matching error happened before all the expected values were read.
3468@cindex matching failure, in @code{scanf}
3469
3470The @code{scanf} function is typically used for things like reading in
3471the contents of tables. For example, here is a function that uses
3472@code{scanf} to initialize an array of @code{double}:
3473
3474@smallexample
3475void
3476readarray (double *array, int n)
3477@{
3478 int i;
3479 for (i=0; i<n; i++)
3480 if (scanf (" %lf", &(array[i])) != 1)
3481 invalid_input_error ();
3482@}
3483@end smallexample
3484
3485The formatted input functions are not used as frequently as the
3486formatted output functions. Partly, this is because it takes some care
3487to use them properly. Another reason is that it is difficult to recover
3488from a matching error.
3489
3490If you are trying to read input that doesn't match a single, fixed
3491pattern, you may be better off using a tool such as Flex to generate a
3492lexical scanner, or Bison to generate a parser, rather than using
9f508673
UD
3493@code{scanf}. For more information about these tools, see @ref{Top, , ,
3494flex.info, Flex: The Lexical Scanner Generator}, and @ref{Top, , ,
28f540f4
RM
3495bison.info, The Bison Reference Manual}.
3496
3497@node Input Conversion Syntax
3498@subsection Input Conversion Syntax
3499
3500A @code{scanf} template string is a string that contains ordinary
3501multibyte characters interspersed with conversion specifications that
3502start with @samp{%}.
3503
3504Any whitespace character (as defined by the @code{isspace} function;
3505@pxref{Classification of Characters}) in the template causes any number
3506of whitespace characters in the input stream to be read and discarded.
3507The whitespace characters that are matched need not be exactly the same
3508whitespace characters that appear in the template string. For example,
3509write @samp{ , } in the template to recognize a comma with optional
3510whitespace before and after.
3511
3512Other characters in the template string that are not part of conversion
3513specifications must match characters in the input stream exactly; if
3514this is not the case, a matching failure occurs.
3515
3516The conversion specifications in a @code{scanf} template string
3517have the general form:
3518
3519@smallexample
3520% @var{flags} @var{width} @var{type} @var{conversion}
3521@end smallexample
3522
3523In more detail, an input conversion specification consists of an initial
3524@samp{%} character followed in sequence by:
3525
3526@itemize @bullet
3527@item
3528An optional @dfn{flag character} @samp{*}, which says to ignore the text
3529read for this specification. When @code{scanf} finds a conversion
3530specification that uses this flag, it reads input as directed by the
3531rest of the conversion specification, but it discards this input, does
3532not use a pointer argument, and does not increment the count of
3533successful assignments.
3534@cindex flag character (@code{scanf})
3535
3536@item
3537An optional flag character @samp{a} (valid with string conversions only)
3538which requests allocation of a buffer long enough to store the string in.
3539(This is a GNU extension.)
3540@xref{Dynamic String Input}.
3541
3542@item
3543An optional decimal integer that specifies the @dfn{maximum field
3544width}. Reading of characters from the input stream stops either when
3545this maximum is reached or when a non-matching character is found,
3546whichever happens first. Most conversions discard initial whitespace
3547characters (those that don't are explicitly documented), and these
3548discarded characters don't count towards the maximum field width.
3549String input conversions store a null character to mark the end of the
3550input; the maximum field width does not include this terminator.
3551@cindex maximum field width (@code{scanf})
3552
3553@item
3554An optional @dfn{type modifier character}. For example, you can
3555specify a type modifier of @samp{l} with integer conversions such as
3556@samp{%d} to specify that the argument is a pointer to a @code{long int}
3557rather than a pointer to an @code{int}.
3558@cindex type modifier character (@code{scanf})
3559
3560@item
3561A character that specifies the conversion to be applied.
3562@end itemize
3563
19c3f208 3564The exact options that are permitted and how they are interpreted vary
28f540f4
RM
3565between the different conversion specifiers. See the descriptions of the
3566individual conversions for information about the particular options that
3567they allow.
3568
3569With the @samp{-Wformat} option, the GNU C compiler checks calls to
3570@code{scanf} and related functions. It examines the format string and
3571verifies that the correct number and types of arguments are supplied.
3572There is also a GNU C syntax to tell the compiler that a function you
19c3f208 3573write uses a @code{scanf}-style format string.
28f540f4
RM
3574@xref{Function Attributes, , Declaring Attributes of Functions,
3575gcc.info, Using GNU CC}, for more information.
3576
3577@node Table of Input Conversions
3578@subsection Table of Input Conversions
3579@cindex input conversions, for @code{scanf}
3580
3581Here is a table that summarizes the various conversion specifications:
3582
3583@table @asis
3584@item @samp{%d}
3585Matches an optionally signed integer written in decimal. @xref{Numeric
3586Input Conversions}.
3587
3588@item @samp{%i}
3589Matches an optionally signed integer in any of the formats that the C
3590language defines for specifying an integer constant. @xref{Numeric
3591Input Conversions}.
3592
3593@item @samp{%o}
3594Matches an unsigned integer written in octal radix.
3595@xref{Numeric Input Conversions}.
3596
3597@item @samp{%u}
3598Matches an unsigned integer written in decimal radix.
3599@xref{Numeric Input Conversions}.
3600
3601@item @samp{%x}, @samp{%X}
3602Matches an unsigned integer written in hexadecimal radix.
3603@xref{Numeric Input Conversions}.
3604
3605@item @samp{%e}, @samp{%f}, @samp{%g}, @samp{%E}, @samp{%G}
3606Matches an optionally signed floating-point number. @xref{Numeric Input
3607Conversions}.
3608
3609@item @samp{%s}
b5e73f56 3610
28f540f4 3611Matches a string containing only non-whitespace characters.
b5e73f56
UD
3612@xref{String Input Conversions}. The presence of the @samp{l} modifier
3613determines whether the output is stored as a wide character string or a
3614multibyte string. If @samp{%s} is used in a wide character function the
3615string is converted as with multiple calls to @code{wcrtomb} into a
3616multibyte string. This means that the buffer must provide room for
3617@code{MB_CUR_MAX} bytes for each wide character read. In case
3618@samp{%ls} is used in a multibyte function the result is converted into
3619wide characters as with multiple calls of @code{mbrtowc} before being
3620stored in the user provided buffer.
3621
3622@item @samp{%S}
3623This is an alias for @samp{%ls} which is supported for compatibility
3624with the Unix standard.
28f540f4
RM
3625
3626@item @samp{%[}
3627Matches a string of characters that belong to a specified set.
b5e73f56
UD
3628@xref{String Input Conversions}. The presence of the @samp{l} modifier
3629determines whether the output is stored as a wide character string or a
3630multibyte string. If @samp{%[} is used in a wide character function the
3631string is converted as with multiple calls to @code{wcrtomb} into a
3632multibyte string. This means that the buffer must provide room for
3633@code{MB_CUR_MAX} bytes for each wide character read. In case
3634@samp{%l[} is used in a multibyte function the result is converted into
3635wide characters as with multiple calls of @code{mbrtowc} before being
3636stored in the user provided buffer.
28f540f4
RM
3637
3638@item @samp{%c}
3639Matches a string of one or more characters; the number of characters
3640read is controlled by the maximum field width given for the conversion.
3641@xref{String Input Conversions}.
3642
c703cd7a 3643If @samp{%c} is used in a wide stream function the read value is
b5e73f56
UD
3644converted from a wide character to the corresponding multibyte character
3645before storing it. Note that this conversion can produce more than one
c703cd7a 3646byte of output and therefore the provided buffer must be large enough for up
b5e73f56
UD
3647to @code{MB_CUR_MAX} bytes for each character. If @samp{%lc} is used in
3648a multibyte function the input is treated as a multibyte sequence (and
3649not bytes) and the result is converted as with calls to @code{mbrtowc}.
3650
3651@item @samp{%C}
3652This is an alias for @samp{%lc} which is supported for compatibility
3653with the Unix standard.
3654
28f540f4
RM
3655@item @samp{%p}
3656Matches a pointer value in the same implementation-defined format used
3657by the @samp{%p} output conversion for @code{printf}. @xref{Other Input
3658Conversions}.
3659
3660@item @samp{%n}
3661This conversion doesn't read any characters; it records the number of
3662characters read so far by this call. @xref{Other Input Conversions}.
3663
3664@item @samp{%%}
3665This matches a literal @samp{%} character in the input stream. No
3666corresponding argument is used. @xref{Other Input Conversions}.
3667@end table
3668
3669If the syntax of a conversion specification is invalid, the behavior is
3670undefined. If there aren't enough function arguments provided to supply
3671addresses for all the conversion specifications in the template strings
3672that perform assignments, or if the arguments are not of the correct
3673types, the behavior is also undefined. On the other hand, extra
3674arguments are simply ignored.
3675
3676@node Numeric Input Conversions
3677@subsection Numeric Input Conversions
3678
3679This section describes the @code{scanf} conversions for reading numeric
3680values.
3681
3682The @samp{%d} conversion matches an optionally signed integer in decimal
3683radix. The syntax that is recognized is the same as that for the
3684@code{strtol} function (@pxref{Parsing of Integers}) with the value
3685@code{10} for the @var{base} argument.
3686
3687The @samp{%i} conversion matches an optionally signed integer in any of
3688the formats that the C language defines for specifying an integer
3689constant. The syntax that is recognized is the same as that for the
3690@code{strtol} function (@pxref{Parsing of Integers}) with the value
3691@code{0} for the @var{base} argument. (You can print integers in this
3692syntax with @code{printf} by using the @samp{#} flag character with the
3693@samp{%x}, @samp{%o}, or @samp{%d} conversion. @xref{Integer Conversions}.)
3694
3695For example, any of the strings @samp{10}, @samp{0xa}, or @samp{012}
3696could be read in as integers under the @samp{%i} conversion. Each of
3697these specifies a number with decimal value @code{10}.
3698
3699The @samp{%o}, @samp{%u}, and @samp{%x} conversions match unsigned
3700integers in octal, decimal, and hexadecimal radices, respectively. The
3701syntax that is recognized is the same as that for the @code{strtoul}
3702function (@pxref{Parsing of Integers}) with the appropriate value
3703(@code{8}, @code{10}, or @code{16}) for the @var{base} argument.
3704
3705The @samp{%X} conversion is identical to the @samp{%x} conversion. They
3706both permit either uppercase or lowercase letters to be used as digits.
3707
3708The default type of the corresponding argument for the @code{%d} and
3709@code{%i} conversions is @code{int *}, and @code{unsigned int *} for the
3710other integer conversions. You can use the following type modifiers to
3711specify other sizes of integer:
3712
3713@table @samp
cc3fa755
UD
3714@item hh
3715Specifies that the argument is a @code{signed char *} or @code{unsigned
3716char *}.
3717
ec751a23 3718This modifier was introduced in @w{ISO C99}.
e852e889 3719
28f540f4
RM
3720@item h
3721Specifies that the argument is a @code{short int *} or @code{unsigned
3722short int *}.
3723
e852e889
UD
3724@item j
3725Specifies that the argument is a @code{intmax_t *} or @code{uintmax_t *}.
3726
ec751a23 3727This modifier was introduced in @w{ISO C99}.
e852e889 3728
28f540f4
RM
3729@item l
3730Specifies that the argument is a @code{long int *} or @code{unsigned
3731long int *}. Two @samp{l} characters is like the @samp{L} modifier, below.
3732
b5e73f56
UD
3733If used with @samp{%c} or @samp{%s} the corresponding parameter is
3734considered as a pointer to a wide character or wide character string
3735respectively. This use of @samp{l} was introduced in @w{Amendment 1} to
3736@w{ISO C90}.
3737
28f540f4
RM
3738@need 100
3739@item ll
3740@itemx L
3741@itemx q
3742Specifies that the argument is a @code{long long int *} or @code{unsigned long long int *}. (The @code{long long} type is an extension supported by the
3743GNU C compiler. For systems that don't provide extra-long integers, this
3744is the same as @code{long int}.)
3745
3746The @samp{q} modifier is another name for the same thing, which comes
3747from 4.4 BSD; a @w{@code{long long int}} is sometimes called a ``quad''
3748@code{int}.
e852e889
UD
3749
3750@item t
3751Specifies that the argument is a @code{ptrdiff_t *}.
3752
ec751a23 3753This modifier was introduced in @w{ISO C99}.
e852e889
UD
3754
3755@item z
3756Specifies that the argument is a @code{size_t *}.
3757
ec751a23 3758This modifier was introduced in @w{ISO C99}.
28f540f4
RM
3759@end table
3760
3761All of the @samp{%e}, @samp{%f}, @samp{%g}, @samp{%E}, and @samp{%G}
3762input conversions are interchangeable. They all match an optionally
3763signed floating point number, in the same syntax as for the
3764@code{strtod} function (@pxref{Parsing of Floats}).
3765
3766For the floating-point input conversions, the default argument type is
3767@code{float *}. (This is different from the corresponding output
3768conversions, where the default type is @code{double}; remember that
3769@code{float} arguments to @code{printf} are converted to @code{double}
3770by the default argument promotions, but @code{float *} arguments are
3771not promoted to @code{double *}.) You can specify other sizes of float
3772using these type modifiers:
3773
3774@table @samp
3775@item l
3776Specifies that the argument is of type @code{double *}.
3777
3778@item L
3779Specifies that the argument is of type @code{long double *}.
3780@end table
3781
2c6fe0bd
UD
3782For all the above number parsing formats there is an additional optional
3783flag @samp{'}. When this flag is given the @code{scanf} function
3784expects the number represented in the input string to be formatted
3785according to the grouping rules of the currently selected locale
3786(@pxref{General Numeric}).
3787
3788If the @code{"C"} or @code{"POSIX"} locale is selected there is no
3789difference. But for a locale which specifies values for the appropriate
3790fields in the locale the input must have the correct form in the input.
3791Otherwise the longest prefix with a correct form is processed.
3792
28f540f4
RM
3793@node String Input Conversions
3794@subsection String Input Conversions
3795
3796This section describes the @code{scanf} input conversions for reading
b5e73f56
UD
3797string and character values: @samp{%s}, @samp{%S}, @samp{%[}, @samp{%c},
3798and @samp{%C}.
28f540f4
RM
3799
3800You have two options for how to receive the input from these
3801conversions:
3802
3803@itemize @bullet
3804@item
b5e73f56
UD
3805Provide a buffer to store it in. This is the default. You should
3806provide an argument of type @code{char *} or @code{wchar_t *} (the
c703cd7a 3807latter if the @samp{l} modifier is present).
28f540f4
RM
3808
3809@strong{Warning:} To make a robust program, you must make sure that the
3810input (plus its terminating null) cannot possibly exceed the size of the
3811buffer you provide. In general, the only way to do this is to specify a
3812maximum field width one less than the buffer size. @strong{If you
3813provide the buffer, always specify a maximum field width to prevent
3814overflow.}
3815
3816@item
3817Ask @code{scanf} to allocate a big enough buffer, by specifying the
3818@samp{a} flag character. This is a GNU extension. You should provide
3819an argument of type @code{char **} for the buffer address to be stored
3820in. @xref{Dynamic String Input}.
3821@end itemize
3822
3823The @samp{%c} conversion is the simplest: it matches a fixed number of
04b9968b 3824characters, always. The maximum field width says how many characters to
28f540f4
RM
3825read; if you don't specify the maximum, the default is 1. This
3826conversion doesn't append a null character to the end of the text it
3827reads. It also does not skip over initial whitespace characters. It
3828reads precisely the next @var{n} characters, and fails if it cannot get
3829that many. Since there is always a maximum field width with @samp{%c}
3830(whether specified, or 1 by default), you can always prevent overflow by
3831making the buffer long enough.
b5e73f56
UD
3832@comment Is character == byte here??? --drepper
3833
3834If the format is @samp{%lc} or @samp{%C} the function stores wide
3835characters which are converted using the conversion determined at the
3836time the stream was opened from the external byte stream. The number of
3837bytes read from the medium is limited by @code{MB_CUR_LEN * @var{n}} but
c703cd7a 3838at most @var{n} wide characters get stored in the output string.
28f540f4
RM
3839
3840The @samp{%s} conversion matches a string of non-whitespace characters.
3841It skips and discards initial whitespace, but stops when it encounters
3842more whitespace after having read something. It stores a null character
3843at the end of the text that it reads.
3844
3845For example, reading the input:
3846
3847@smallexample
3848 hello, world
3849@end smallexample
3850
3851@noindent
3852with the conversion @samp{%10c} produces @code{" hello, wo"}, but
3853reading the same input with the conversion @samp{%10s} produces
3854@code{"hello,"}.
3855
3856@strong{Warning:} If you do not specify a field width for @samp{%s},
3857then the number of characters read is limited only by where the next
3858whitespace character appears. This almost certainly means that invalid
3859input can make your program crash---which is a bug.
3860
b5e73f56
UD
3861The @samp{%ls} and @samp{%S} format are handled just like @samp{%s}
3862except that the external byte sequence is converted using the conversion
3863associated with the stream to wide characters with their own encoding.
3864A width or precision specified with the format do not directly determine
3865how many bytes are read from the stream since they measure wide
3866characters. But an upper limit can be computed by multiplying the value
3867of the width or precision by @code{MB_CUR_MAX}.
3868
28f540f4
RM
3869To read in characters that belong to an arbitrary set of your choice,
3870use the @samp{%[} conversion. You specify the set between the @samp{[}
3871character and a following @samp{]} character, using the same syntax used
9878ad46 3872in regular expressions for explicit sets of characters. As special cases:
28f540f4
RM
3873
3874@itemize @bullet
19c3f208 3875@item
28f540f4
RM
3876A literal @samp{]} character can be specified as the first character
3877of the set.
3878
19c3f208 3879@item
28f540f4
RM
3880An embedded @samp{-} character (that is, one that is not the first or
3881last character of the set) is used to specify a range of characters.
3882
19c3f208 3883@item
28f540f4 3884If a caret character @samp{^} immediately follows the initial @samp{[},
c703cd7a 3885then the set of allowed input characters is everything @emph{except}
28f540f4
RM
3886the characters listed.
3887@end itemize
3888
3889The @samp{%[} conversion does not skip over initial whitespace
3890characters.
3891
9878ad46
OB
3892Note that the @dfn{character class} syntax available in character sets
3893that appear inside regular expressions (such as @samp{[:alpha:]}) is
3894@emph{not} available in the @samp{%[} conversion.
3895
28f540f4
RM
3896Here are some examples of @samp{%[} conversions and what they mean:
3897
3898@table @samp
3899@item %25[1234567890]
3900Matches a string of up to 25 digits.
3901
3902@item %25[][]
3903Matches a string of up to 25 square brackets.
3904
3905@item %25[^ \f\n\r\t\v]
3906Matches a string up to 25 characters long that doesn't contain any of
3907the standard whitespace characters. This is slightly different from
3908@samp{%s}, because if the input begins with a whitespace character,
3909@samp{%[} reports a matching failure while @samp{%s} simply discards the
3910initial whitespace.
3911
19c3f208 3912@item %25[a-z]
28f540f4
RM
3913Matches up to 25 lowercase characters.
3914@end table
3915
b5e73f56
UD
3916As for @samp{%c} and @samp{%s} the @samp{%[} format is also modified to
3917produce wide characters if the @samp{l} modifier is present. All what
3918is said about @samp{%ls} above is true for @samp{%l[}.
3919
28f540f4
RM
3920One more reminder: the @samp{%s} and @samp{%[} conversions are
3921@strong{dangerous} if you don't specify a maximum width or use the
3922@samp{a} flag, because input too long would overflow whatever buffer you
3923have provided for it. No matter how long your buffer is, a user could
3924supply input that is longer. A well-written program reports invalid
3925input with a comprehensible error message, not with a crash.
3926
3927@node Dynamic String Input
3928@subsection Dynamically Allocating String Conversions
3929
3930A GNU extension to formatted input lets you safely read a string with no
3931maximum size. Using this feature, you don't supply a buffer; instead,
3932@code{scanf} allocates a buffer big enough to hold the data and gives
3933you its address. To use this feature, write @samp{a} as a flag
3934character, as in @samp{%as} or @samp{%a[0-9a-z]}.
3935
3936The pointer argument you supply for where to store the input should have
3937type @code{char **}. The @code{scanf} function allocates a buffer and
3938stores its address in the word that the argument points to. You should
3939free the buffer with @code{free} when you no longer need it.
3940
3941Here is an example of using the @samp{a} flag with the @samp{%[@dots{}]}
3942conversion specification to read a ``variable assignment'' of the form
3943@samp{@var{variable} = @var{value}}.
3944
3945@smallexample
3946@{
3947 char *variable, *value;
3948
3949 if (2 > scanf ("%a[a-zA-Z0-9] = %a[^\n]\n",
162ba701 3950 &variable, &value))
28f540f4
RM
3951 @{
3952 invalid_input_error ();
3953 return 0;
3954 @}
3955
3956 @dots{}
3957@}
3958@end smallexample
3959
3960@node Other Input Conversions
3961@subsection Other Input Conversions
3962
3963This section describes the miscellaneous input conversions.
3964
3965The @samp{%p} conversion is used to read a pointer value. It recognizes
04b9968b 3966the same syntax used by the @samp{%p} output conversion for
28f540f4
RM
3967@code{printf} (@pxref{Other Output Conversions}); that is, a hexadecimal
3968number just as the @samp{%x} conversion accepts. The corresponding
3969argument should be of type @code{void **}; that is, the address of a
3970place to store a pointer.
3971
3972The resulting pointer value is not guaranteed to be valid if it was not
3973originally written during the same program execution that reads it in.
3974
3975The @samp{%n} conversion produces the number of characters read so far
3976by this call. The corresponding argument should be of type @code{int *}.
3977This conversion works in the same way as the @samp{%n} conversion for
3978@code{printf}; see @ref{Other Output Conversions}, for an example.
3979
3980The @samp{%n} conversion is the only mechanism for determining the
3981success of literal matches or conversions with suppressed assignments.
3982If the @samp{%n} follows the locus of a matching failure, then no value
3983is stored for it since @code{scanf} returns before processing the
3984@samp{%n}. If you store @code{-1} in that argument slot before calling
3985@code{scanf}, the presence of @code{-1} after @code{scanf} indicates an
3986error occurred before the @samp{%n} was reached.
3987
3988Finally, the @samp{%%} conversion matches a literal @samp{%} character
3989in the input stream, without using an argument. This conversion does
3990not permit any flags, field width, or type modifier to be specified.
3991
3992@node Formatted Input Functions
3993@subsection Formatted Input Functions
3994
3995Here are the descriptions of the functions for performing formatted
3996input.
3997Prototypes for these functions are in the header file @file{stdio.h}.
3998@pindex stdio.h
3999
4000@comment stdio.h
f65fd747 4001@comment ISO
28f540f4 4002@deftypefun int scanf (const char *@var{template}, @dots{})
171e9210 4003@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
28f540f4
RM
4004The @code{scanf} function reads formatted input from the stream
4005@code{stdin} under the control of the template string @var{template}.
4006The optional arguments are pointers to the places which receive the
4007resulting values.
4008
4009The return value is normally the number of successful assignments. If
04b9968b
UD
4010an end-of-file condition is detected before any matches are performed,
4011including matches against whitespace and literal characters in the
4012template, then @code{EOF} is returned.
28f540f4
RM
4013@end deftypefun
4014
b5e73f56
UD
4015@comment wchar.h
4016@comment ISO
4017@deftypefun int wscanf (const wchar_t *@var{template}, @dots{})
171e9210 4018@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
4019The @code{wscanf} function reads formatted input from the stream
4020@code{stdin} under the control of the template string @var{template}.
4021The optional arguments are pointers to the places which receive the
4022resulting values.
4023
4024The return value is normally the number of successful assignments. If
4025an end-of-file condition is detected before any matches are performed,
4026including matches against whitespace and literal characters in the
4027template, then @code{WEOF} is returned.
4028@end deftypefun
4029
28f540f4 4030@comment stdio.h
f65fd747 4031@comment ISO
28f540f4 4032@deftypefun int fscanf (FILE *@var{stream}, const char *@var{template}, @dots{})
171e9210 4033@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
28f540f4
RM
4034This function is just like @code{scanf}, except that the input is read
4035from the stream @var{stream} instead of @code{stdin}.
4036@end deftypefun
4037
b5e73f56
UD
4038@comment wchar.h
4039@comment ISO
4040@deftypefun int fwscanf (FILE *@var{stream}, const wchar_t *@var{template}, @dots{})
171e9210 4041@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
4042This function is just like @code{wscanf}, except that the input is read
4043from the stream @var{stream} instead of @code{stdin}.
4044@end deftypefun
4045
28f540f4 4046@comment stdio.h
f65fd747 4047@comment ISO
28f540f4 4048@deftypefun int sscanf (const char *@var{s}, const char *@var{template}, @dots{})
171e9210 4049@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
4050This is like @code{scanf}, except that the characters are taken from the
4051null-terminated string @var{s} instead of from a stream. Reaching the
4052end of the string is treated as an end-of-file condition.
4053
4054The behavior of this function is undefined if copying takes place
4055between objects that overlap---for example, if @var{s} is also given
b5e73f56
UD
4056as an argument to receive a string read under control of the @samp{%s},
4057@samp{%S}, or @samp{%[} conversion.
4058@end deftypefun
4059
4060@comment wchar.h
4061@comment ISO
8ded91fb 4062@deftypefun int swscanf (const wchar_t *@var{ws}, const wchar_t *@var{template}, @dots{})
171e9210 4063@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
b5e73f56
UD
4064This is like @code{wscanf}, except that the characters are taken from the
4065null-terminated string @var{ws} instead of from a stream. Reaching the
4066end of the string is treated as an end-of-file condition.
4067
4068The behavior of this function is undefined if copying takes place
4069between objects that overlap---for example, if @var{ws} is also given as
4070an argument to receive a string read under control of the @samp{%s},
4071@samp{%S}, or @samp{%[} conversion.
28f540f4
RM
4072@end deftypefun
4073
4074@node Variable Arguments Input
4075@subsection Variable Arguments Input Functions
4076
4077The functions @code{vscanf} and friends are provided so that you can
4078define your own variadic @code{scanf}-like functions that make use of
4079the same internals as the built-in formatted output functions.
4080These functions are analogous to the @code{vprintf} series of output
4081functions. @xref{Variable Arguments Output}, for important
4082information on how to use them.
4083
b5e73f56
UD
4084@strong{Portability Note:} The functions listed in this section were
4085introduced in @w{ISO C99} and were before available as GNU extensions.
28f540f4
RM
4086
4087@comment stdio.h
b5e73f56 4088@comment ISO
28f540f4 4089@deftypefun int vscanf (const char *@var{template}, va_list @var{ap})
171e9210 4090@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
04b9968b 4091This function is similar to @code{scanf}, but instead of taking
28f540f4
RM
4092a variable number of arguments directly, it takes an argument list
4093pointer @var{ap} of type @code{va_list} (@pxref{Variadic Functions}).
4094@end deftypefun
4095
b5e73f56
UD
4096@comment wchar.h
4097@comment ISO
4098@deftypefun int vwscanf (const wchar_t *@var{template}, va_list @var{ap})
171e9210 4099@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
4100This function is similar to @code{wscanf}, but instead of taking
4101a variable number of arguments directly, it takes an argument list
4102pointer @var{ap} of type @code{va_list} (@pxref{Variadic Functions}).
4103@end deftypefun
4104
28f540f4 4105@comment stdio.h
b5e73f56 4106@comment ISO
28f540f4 4107@deftypefun int vfscanf (FILE *@var{stream}, const char *@var{template}, va_list @var{ap})
171e9210 4108@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
28f540f4
RM
4109This is the equivalent of @code{fscanf} with the variable argument list
4110specified directly as for @code{vscanf}.
4111@end deftypefun
4112
b5e73f56
UD
4113@comment wchar.h
4114@comment ISO
4115@deftypefun int vfwscanf (FILE *@var{stream}, const wchar_t *@var{template}, va_list @var{ap})
171e9210 4116@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
b5e73f56
UD
4117This is the equivalent of @code{fwscanf} with the variable argument list
4118specified directly as for @code{vwscanf}.
4119@end deftypefun
4120
28f540f4 4121@comment stdio.h
b5e73f56 4122@comment ISO
28f540f4 4123@deftypefun int vsscanf (const char *@var{s}, const char *@var{template}, va_list @var{ap})
171e9210 4124@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4
RM
4125This is the equivalent of @code{sscanf} with the variable argument list
4126specified directly as for @code{vscanf}.
4127@end deftypefun
4128
b5e73f56
UD
4129@comment wchar.h
4130@comment ISO
4131@deftypefun int vswscanf (const wchar_t *@var{s}, const wchar_t *@var{template}, va_list @var{ap})
171e9210 4132@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
b5e73f56
UD
4133This is the equivalent of @code{swscanf} with the variable argument list
4134specified directly as for @code{vwscanf}.
4135@end deftypefun
4136
28f540f4
RM
4137In GNU C, there is a special construct you can use to let the compiler
4138know that a function uses a @code{scanf}-style format string. Then it
4139can check the number and types of arguments in each call to the
4140function, and warn you when they do not match the format string.
88197030 4141For details, see @ref{Function Attributes, , Declaring Attributes of Functions,
04b9968b 4142gcc.info, Using GNU CC}.
28f540f4
RM
4143
4144@node EOF and Errors
4145@section End-Of-File and Errors
4146
4147@cindex end of file, on a stream
4148Many of the functions described in this chapter return the value of the
4149macro @code{EOF} to indicate unsuccessful completion of the operation.
4150Since @code{EOF} is used to report both end of file and random errors,
4151it's often better to use the @code{feof} function to check explicitly
4152for end of file and @code{ferror} to check for errors. These functions
4153check indicators that are part of the internal state of the stream
4154object, indicators set if the appropriate condition was detected by a
4155previous I/O operation on that stream.
4156
28f540f4 4157@comment stdio.h
f65fd747 4158@comment ISO
28f540f4 4159@deftypevr Macro int EOF
b5e73f56
UD
4160This macro is an integer value that is returned by a number of narrow
4161stream functions to indicate an end-of-file condition, or some other
1f77f049 4162error situation. With @theglibc{}, @code{EOF} is @code{-1}. In
b5e73f56
UD
4163other libraries, its value may be some other negative number.
4164
4165This symbol is declared in @file{stdio.h}.
4166@end deftypevr
4167
4168@comment wchar.h
4169@comment ISO
4170@deftypevr Macro int WEOF
4171This macro is an integer value that is returned by a number of wide
4172stream functions to indicate an end-of-file condition, or some other
1f77f049 4173error situation. With @theglibc{}, @code{WEOF} is @code{-1}. In
b5e73f56
UD
4174other libraries, its value may be some other negative number.
4175
4176This symbol is declared in @file{wchar.h}.
28f540f4
RM
4177@end deftypevr
4178
28f540f4 4179@comment stdio.h
f65fd747 4180@comment ISO
28f540f4 4181@deftypefun int feof (FILE *@var{stream})
171e9210 4182@safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@aculock{}}}
28f540f4
RM
4183The @code{feof} function returns nonzero if and only if the end-of-file
4184indicator for the stream @var{stream} is set.
b5e73f56
UD
4185
4186This symbol is declared in @file{stdio.h}.
28f540f4
RM
4187@end deftypefun
4188
7b4161bb
UD
4189@comment stdio.h
4190@comment GNU
4191@deftypefun int feof_unlocked (FILE *@var{stream})
171e9210
AO
4192@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
4193@c There isn't much of a thread unsafety risk in reading a flag word and
4194@c testing a bit in it.
7b4161bb 4195The @code{feof_unlocked} function is equivalent to the @code{feof}
1dc843f7 4196function except that it does not implicitly lock the stream.
7b4161bb
UD
4197
4198This function is a GNU extension.
b5e73f56
UD
4199
4200This symbol is declared in @file{stdio.h}.
7b4161bb
UD
4201@end deftypefun
4202
28f540f4 4203@comment stdio.h
f65fd747 4204@comment ISO
28f540f4 4205@deftypefun int ferror (FILE *@var{stream})
171e9210 4206@safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@aculock{}}}
28f540f4
RM
4207The @code{ferror} function returns nonzero if and only if the error
4208indicator for the stream @var{stream} is set, indicating that an error
4209has occurred on a previous operation on the stream.
b5e73f56
UD
4210
4211This symbol is declared in @file{stdio.h}.
28f540f4
RM
4212@end deftypefun
4213
7b4161bb
UD
4214@comment stdio.h
4215@comment GNU
4216@deftypefun int ferror_unlocked (FILE *@var{stream})
171e9210 4217@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
7b4161bb 4218The @code{ferror_unlocked} function is equivalent to the @code{ferror}
1dc843f7 4219function except that it does not implicitly lock the stream.
7b4161bb
UD
4220
4221This function is a GNU extension.
b5e73f56
UD
4222
4223This symbol is declared in @file{stdio.h}.
7b4161bb
UD
4224@end deftypefun
4225
28f540f4
RM
4226In addition to setting the error indicator associated with the stream,
4227the functions that operate on streams also set @code{errno} in the same
4228way as the corresponding low-level functions that operate on file
4229descriptors. For example, all of the functions that perform output to a
4230stream---such as @code{fputc}, @code{printf}, and @code{fflush}---are
4231implemented in terms of @code{write}, and all of the @code{errno} error
4232conditions defined for @code{write} are meaningful for these functions.
4233For more information about the descriptor-level I/O functions, see
4234@ref{Low-Level I/O}.
4235
460e040a
UD
4236@node Error Recovery
4237@section Recovering from errors
4238
7ba73c63 4239You may explicitly clear the error and EOF flags with the @code{clearerr}
460e040a
UD
4240function.
4241
4242@comment stdio.h
4243@comment ISO
4244@deftypefun void clearerr (FILE *@var{stream})
171e9210 4245@safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@aculock{}}}
460e040a
UD
4246This function clears the end-of-file and error indicators for the
4247stream @var{stream}.
4248
4249The file positioning functions (@pxref{File Positioning}) also clear the
4250end-of-file indicator for the stream.
4251@end deftypefun
4252
7b4161bb
UD
4253@comment stdio.h
4254@comment GNU
4255@deftypefun void clearerr_unlocked (FILE *@var{stream})
171e9210 4256@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@assafe{}@acsafe{}}
7b4161bb 4257The @code{clearerr_unlocked} function is equivalent to the @code{clearerr}
1dc843f7 4258function except that it does not implicitly lock the stream.
7b4161bb
UD
4259
4260This function is a GNU extension.
4261@end deftypefun
4262
460e040a
UD
4263Note that it is @emph{not} correct to just clear the error flag and retry
4264a failed stream operation. After a failed write, any number of
4265characters since the last buffer flush may have been committed to the
4266file, while some buffered data may have been discarded. Merely retrying
4267can thus cause lost or repeated data.
4268
4269A failed read may leave the file pointer in an inappropriate position for
4270a second try. In both cases, you should seek to a known position before
4271retrying.
4272
4273Most errors that can happen are not recoverable --- a second try will
4274always fail again in the same way. So usually it is best to give up and
4275report the error to the user, rather than install complicated recovery
4276logic.
4277
7ba73c63 4278One important exception is @code{EINTR} (@pxref{Interrupted Primitives}).
460e040a
UD
4279Many stream I/O implementations will treat it as an ordinary error, which
4280can be quite inconvenient. You can avoid this hassle by installing all
4281signals with the @code{SA_RESTART} flag.
4282
4283For similar reasons, setting nonblocking I/O on a stream's file
4284descriptor is not usually advisable.
4285
28f540f4
RM
4286@node Binary Streams
4287@section Text and Binary Streams
4288
a7a93d50 4289@gnusystems{} and other POSIX-compatible operating systems organize all
28f540f4
RM
4290files as uniform sequences of characters. However, some other systems
4291make a distinction between files containing text and files containing
f65fd747 4292binary data, and the input and output facilities of @w{ISO C} provide for
28f540f4
RM
4293this distinction. This section tells you how to write programs portable
4294to such systems.
4295
4296@cindex text stream
4297@cindex binary stream
4298When you open a stream, you can specify either a @dfn{text stream} or a
4299@dfn{binary stream}. You indicate that you want a binary stream by
4300specifying the @samp{b} modifier in the @var{opentype} argument to
4301@code{fopen}; see @ref{Opening Streams}. Without this
4302option, @code{fopen} opens the file as a text stream.
4303
4304Text and binary streams differ in several ways:
4305
4306@itemize @bullet
4307@item
4308The data read from a text stream is divided into @dfn{lines} which are
4309terminated by newline (@code{'\n'}) characters, while a binary stream is
4310simply a long series of characters. A text stream might on some systems
4311fail to handle lines more than 254 characters long (including the
4312terminating newline character).
4313@cindex lines (in a text file)
4314
4315@item
4316On some systems, text files can contain only printing characters,
4317horizontal tab characters, and newlines, and so text streams may not
4318support other characters. However, binary streams can handle any
4319character value.
4320
4321@item
4322Space characters that are written immediately preceding a newline
4323character in a text stream may disappear when the file is read in again.
4324
4325@item
4326More generally, there need not be a one-to-one mapping between
4327characters that are read from or written to a text stream, and the
4328characters in the actual file.
4329@end itemize
4330
4331Since a binary stream is always more capable and more predictable than a
4332text stream, you might wonder what purpose text streams serve. Why not
4333simply always use binary streams? The answer is that on these operating
4334systems, text and binary streams use different file formats, and the
4335only way to read or write ``an ordinary file of text'' that can work
4336with other text-oriented programs is through a text stream.
4337
1f77f049 4338In @theglibc{}, and on all POSIX systems, there is no difference
28f540f4
RM
4339between text streams and binary streams. When you open a stream, you
4340get the same kind of stream regardless of whether you ask for binary.
4341This stream can handle any file content, and has none of the
4342restrictions that text streams sometimes have.
4343
4344@node File Positioning
4345@section File Positioning
4346@cindex file positioning on a stream
4347@cindex positioning a stream
4348@cindex seeking on a stream
4349
4350The @dfn{file position} of a stream describes where in the file the
4351stream is currently reading or writing. I/O on the stream advances the
a7a93d50 4352file position through the file. On @gnusystems{}, the file position is
28f540f4
RM
4353represented as an integer, which counts the number of bytes from the
4354beginning of the file. @xref{File Position}.
4355
4356During I/O to an ordinary disk file, you can change the file position
4357whenever you wish, so as to read or write any portion of the file. Some
4358other kinds of files may also permit this. Files which support changing
4359the file position are sometimes referred to as @dfn{random-access}
4360files.
4361
4362You can use the functions in this section to examine or modify the file
4363position indicator associated with a stream. The symbols listed below
4364are declared in the header file @file{stdio.h}.
4365@pindex stdio.h
4366
4367@comment stdio.h
f65fd747 4368@comment ISO
28f540f4 4369@deftypefun {long int} ftell (FILE *@var{stream})
171e9210 4370@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4371This function returns the current file position of the stream
4372@var{stream}.
4373
4374This function can fail if the stream doesn't support file positioning,
4375or if the file position can't be represented in a @code{long int}, and
4376possibly for other reasons as well. If a failure occurs, a value of
4377@code{-1} is returned.
4378@end deftypefun
4379
a5a0310d
UD
4380@comment stdio.h
4381@comment Unix98
4382@deftypefun off_t ftello (FILE *@var{stream})
171e9210 4383@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
04b9968b
UD
4384The @code{ftello} function is similar to @code{ftell}, except that it
4385returns a value of type @code{off_t}. Systems which support this type
4386use it to describe all file positions, unlike the POSIX specification
4387which uses a long int. The two are not necessarily the same size.
4388Therefore, using ftell can lead to problems if the implementation is
4389written on top of a POSIX compliant low-level I/O implementation, and using
4390@code{ftello} is preferable whenever it is available.
4391
4392If this function fails it returns @code{(off_t) -1}. This can happen due
a5a0310d
UD
4393to missing support for file positioning or internal errors. Otherwise
4394the return value is the current file position.
4395
4396The function is an extension defined in the Unix Single Specification
4397version 2.
a3a4a74e
UD
4398
4399When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
0be8752b 440032 bit system this function is in fact @code{ftello64}. I.e., the
a3a4a74e
UD
4401LFS interface transparently replaces the old interface.
4402@end deftypefun
4403
4404@comment stdio.h
4405@comment Unix98
4406@deftypefun off64_t ftello64 (FILE *@var{stream})
171e9210 4407@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
a3a4a74e
UD
4408This function is similar to @code{ftello} with the only difference that
4409the return value is of type @code{off64_t}. This also requires that the
4410stream @var{stream} was opened using either @code{fopen64},
4411@code{freopen64}, or @code{tmpfile64} since otherwise the underlying
9ceeb279 4412file operations to position the file pointer beyond the @twoexp{31}
a3a4a74e
UD
4413bytes limit might fail.
4414
4415If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
4416bits machine this function is available under the name @code{ftello}
4417and so transparently replaces the old interface.
a5a0310d
UD
4418@end deftypefun
4419
28f540f4 4420@comment stdio.h
f65fd747 4421@comment ISO
28f540f4 4422@deftypefun int fseek (FILE *@var{stream}, long int @var{offset}, int @var{whence})
171e9210 4423@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4424The @code{fseek} function is used to change the file position of the
4425stream @var{stream}. The value of @var{whence} must be one of the
4426constants @code{SEEK_SET}, @code{SEEK_CUR}, or @code{SEEK_END}, to
4427indicate whether the @var{offset} is relative to the beginning of the
4428file, the current file position, or the end of the file, respectively.
4429
4430This function returns a value of zero if the operation was successful,
4431and a nonzero value to indicate failure. A successful call also clears
4432the end-of-file indicator of @var{stream} and discards any characters
4433that were ``pushed back'' by the use of @code{ungetc}.
4434
4435@code{fseek} either flushes any buffered output before setting the file
4436position or else remembers it so it will be written later in its proper
4437place in the file.
4438@end deftypefun
4439
a5a0310d
UD
4440@comment stdio.h
4441@comment Unix98
4442@deftypefun int fseeko (FILE *@var{stream}, off_t @var{offset}, int @var{whence})
171e9210 4443@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
a5a0310d
UD
4444This function is similar to @code{fseek} but it corrects a problem with
4445@code{fseek} in a system with POSIX types. Using a value of type
4446@code{long int} for the offset is not compatible with POSIX.
4447@code{fseeko} uses the correct type @code{off_t} for the @var{offset}
4448parameter.
4449
f2ea0f5b 4450For this reason it is a good idea to prefer @code{ftello} whenever it is
a5a0310d
UD
4451available since its functionality is (if different at all) closer the
4452underlying definition.
4453
c703cd7a 4454The functionality and return value are the same as for @code{fseek}.
a5a0310d
UD
4455
4456The function is an extension defined in the Unix Single Specification
4457version 2.
a3a4a74e
UD
4458
4459When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
0be8752b 446032 bit system this function is in fact @code{fseeko64}. I.e., the
a3a4a74e
UD
4461LFS interface transparently replaces the old interface.
4462@end deftypefun
4463
4464@comment stdio.h
4465@comment Unix98
4466@deftypefun int fseeko64 (FILE *@var{stream}, off64_t @var{offset}, int @var{whence})
171e9210 4467@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
a3a4a74e
UD
4468This function is similar to @code{fseeko} with the only difference that
4469the @var{offset} parameter is of type @code{off64_t}. This also
4470requires that the stream @var{stream} was opened using either
4471@code{fopen64}, @code{freopen64}, or @code{tmpfile64} since otherwise
4472the underlying file operations to position the file pointer beyond the
9ceeb279 4473@twoexp{31} bytes limit might fail.
a3a4a74e
UD
4474
4475If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
4476bits machine this function is available under the name @code{fseeko}
4477and so transparently replaces the old interface.
a5a0310d
UD
4478@end deftypefun
4479
4480@strong{Portability Note:} In non-POSIX systems, @code{ftell},
4481@code{ftello}, @code{fseek} and @code{fseeko} might work reliably only
4482on binary streams. @xref{Binary Streams}.
28f540f4
RM
4483
4484The following symbolic constants are defined for use as the @var{whence}
4485argument to @code{fseek}. They are also used with the @code{lseek}
4486function (@pxref{I/O Primitives}) and to specify offsets for file locks
4487(@pxref{Control Operations}).
4488
4489@comment stdio.h
f65fd747 4490@comment ISO
28f540f4
RM
4491@deftypevr Macro int SEEK_SET
4492This is an integer constant which, when used as the @var{whence}
c703cd7a 4493argument to the @code{fseek} or @code{fseeko} functions, specifies that
a5a0310d 4494the offset provided is relative to the beginning of the file.
28f540f4
RM
4495@end deftypevr
4496
4497@comment stdio.h
f65fd747 4498@comment ISO
28f540f4
RM
4499@deftypevr Macro int SEEK_CUR
4500This is an integer constant which, when used as the @var{whence}
c703cd7a 4501argument to the @code{fseek} or @code{fseeko} functions, specifies that
a5a0310d 4502the offset provided is relative to the current file position.
28f540f4
RM
4503@end deftypevr
4504
4505@comment stdio.h
f65fd747 4506@comment ISO
28f540f4
RM
4507@deftypevr Macro int SEEK_END
4508This is an integer constant which, when used as the @var{whence}
c703cd7a 4509argument to the @code{fseek} or @code{fseeko} functions, specifies that
a5a0310d 4510the offset provided is relative to the end of the file.
28f540f4
RM
4511@end deftypevr
4512
4513@comment stdio.h
f65fd747 4514@comment ISO
28f540f4 4515@deftypefun void rewind (FILE *@var{stream})
171e9210 4516@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4 4517The @code{rewind} function positions the stream @var{stream} at the
f2ea0f5b 4518beginning of the file. It is equivalent to calling @code{fseek} or
a5a0310d
UD
4519@code{fseeko} on the @var{stream} with an @var{offset} argument of
4520@code{0L} and a @var{whence} argument of @code{SEEK_SET}, except that
4521the return value is discarded and the error indicator for the stream is
4522reset.
28f540f4
RM
4523@end deftypefun
4524
4525These three aliases for the @samp{SEEK_@dots{}} constants exist for the
4526sake of compatibility with older BSD systems. They are defined in two
4527different header files: @file{fcntl.h} and @file{sys/file.h}.
4528
2fe82ca6 4529@vtable @code
28f540f4
RM
4530@comment sys/file.h
4531@comment BSD
4532@item L_SET
28f540f4
RM
4533An alias for @code{SEEK_SET}.
4534
4535@comment sys/file.h
4536@comment BSD
4537@item L_INCR
28f540f4
RM
4538An alias for @code{SEEK_CUR}.
4539
4540@comment sys/file.h
4541@comment BSD
4542@item L_XTND
28f540f4 4543An alias for @code{SEEK_END}.
2fe82ca6 4544@end vtable
28f540f4
RM
4545
4546@node Portable Positioning
4547@section Portable File-Position Functions
4548
a7a93d50 4549On @gnusystems{}, the file position is truly a character count. You
a5a0310d
UD
4550can specify any character count value as an argument to @code{fseek} or
4551@code{fseeko} and get reliable results for any random access file.
4552However, some @w{ISO C} systems do not represent file positions in this
4553way.
28f540f4
RM
4554
4555On some systems where text streams truly differ from binary streams, it
4556is impossible to represent the file position of a text stream as a count
4557of characters from the beginning of the file. For example, the file
4558position on some systems must encode both a record offset within the
4559file, and a character offset within the record.
4560
4561As a consequence, if you want your programs to be portable to these
4562systems, you must observe certain rules:
4563
4564@itemize @bullet
4565@item
4566The value returned from @code{ftell} on a text stream has no predictable
4567relationship to the number of characters you have read so far. The only
4568thing you can rely on is that you can use it subsequently as the
a5a0310d
UD
4569@var{offset} argument to @code{fseek} or @code{fseeko} to move back to
4570the same file position.
28f540f4 4571
19c3f208 4572@item
a5a0310d 4573In a call to @code{fseek} or @code{fseeko} on a text stream, either the
04b9968b 4574@var{offset} must be zero, or @var{whence} must be @code{SEEK_SET} and
ded5b9b7 4575the @var{offset} must be the result of an earlier call to @code{ftell}
04b9968b 4576on the same stream.
28f540f4
RM
4577
4578@item
4579The value of the file position indicator of a text stream is undefined
4580while there are characters that have been pushed back with @code{ungetc}
4581that haven't been read or discarded. @xref{Unreading}.
4582@end itemize
4583
4584But even if you observe these rules, you may still have trouble for long
4585files, because @code{ftell} and @code{fseek} use a @code{long int} value
4586to represent the file position. This type may not have room to encode
a5a0310d
UD
4587all the file positions in a large file. Using the @code{ftello} and
4588@code{fseeko} functions might help here since the @code{off_t} type is
4589expected to be able to hold all file position values but this still does
4590not help to handle additional information which must be associated with
4591a file position.
28f540f4
RM
4592
4593So if you do want to support systems with peculiar encodings for the
4594file positions, it is better to use the functions @code{fgetpos} and
4595@code{fsetpos} instead. These functions represent the file position
4596using the data type @code{fpos_t}, whose internal representation varies
4597from system to system.
4598
4599These symbols are declared in the header file @file{stdio.h}.
4600@pindex stdio.h
4601
4602@comment stdio.h
f65fd747 4603@comment ISO
28f540f4
RM
4604@deftp {Data Type} fpos_t
4605This is the type of an object that can encode information about the
4606file position of a stream, for use by the functions @code{fgetpos} and
4607@code{fsetpos}.
4608
a7a93d50 4609In @theglibc{}, @code{fpos_t} is an opaque data structure that
5988b69d
AJ
4610contains internal data to represent file offset and conversion state
4611information. In other systems, it might have a different internal
28f540f4 4612representation.
a3a4a74e 4613
0be8752b 4614When compiling with @code{_FILE_OFFSET_BITS == 64} on a 32 bit machine
5988b69d
AJ
4615this type is in fact equivalent to @code{fpos64_t} since the LFS
4616interface transparently replaces the old interface.
a3a4a74e
UD
4617@end deftp
4618
4619@comment stdio.h
4620@comment Unix98
4621@deftp {Data Type} fpos64_t
4622This is the type of an object that can encode information about the
4623file position of a stream, for use by the functions @code{fgetpos64} and
4624@code{fsetpos64}.
4625
a7a93d50 4626In @theglibc{}, @code{fpos64_t} is an opaque data structure that
5988b69d
AJ
4627contains internal data to represent file offset and conversion state
4628information. In other systems, it might have a different internal
a3a4a74e 4629representation.
28f540f4
RM
4630@end deftp
4631
4632@comment stdio.h
f65fd747 4633@comment ISO
28f540f4 4634@deftypefun int fgetpos (FILE *@var{stream}, fpos_t *@var{position})
171e9210 4635@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4636This function stores the value of the file position indicator for the
4637stream @var{stream} in the @code{fpos_t} object pointed to by
4638@var{position}. If successful, @code{fgetpos} returns zero; otherwise
4639it returns a nonzero value and stores an implementation-defined positive
4640value in @code{errno}.
a3a4a74e
UD
4641
4642When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
0be8752b 464332 bit system the function is in fact @code{fgetpos64}. I.e., the LFS
5988b69d 4644interface transparently replaces the old interface.
a3a4a74e
UD
4645@end deftypefun
4646
4647@comment stdio.h
4648@comment Unix98
4649@deftypefun int fgetpos64 (FILE *@var{stream}, fpos64_t *@var{position})
171e9210 4650@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
a3a4a74e
UD
4651This function is similar to @code{fgetpos} but the file position is
4652returned in a variable of type @code{fpos64_t} to which @var{position}
4653points.
4654
4655If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
4656bits machine this function is available under the name @code{fgetpos}
4657and so transparently replaces the old interface.
28f540f4
RM
4658@end deftypefun
4659
4660@comment stdio.h
f65fd747 4661@comment ISO
a3a4a74e 4662@deftypefun int fsetpos (FILE *@var{stream}, const fpos_t *@var{position})
171e9210 4663@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4664This function sets the file position indicator for the stream @var{stream}
4665to the position @var{position}, which must have been set by a previous
4666call to @code{fgetpos} on the same stream. If successful, @code{fsetpos}
4667clears the end-of-file indicator on the stream, discards any characters
4668that were ``pushed back'' by the use of @code{ungetc}, and returns a value
4669of zero. Otherwise, @code{fsetpos} returns a nonzero value and stores
4670an implementation-defined positive value in @code{errno}.
a3a4a74e
UD
4671
4672When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
0be8752b 467332 bit system the function is in fact @code{fsetpos64}. I.e., the LFS
5988b69d 4674interface transparently replaces the old interface.
a3a4a74e
UD
4675@end deftypefun
4676
4677@comment stdio.h
4678@comment Unix98
4679@deftypefun int fsetpos64 (FILE *@var{stream}, const fpos64_t *@var{position})
171e9210 4680@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
a3a4a74e
UD
4681This function is similar to @code{fsetpos} but the file position used
4682for positioning is provided in a variable of type @code{fpos64_t} to
4683which @var{position} points.
4684
4685If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
4686bits machine this function is available under the name @code{fsetpos}
4687and so transparently replaces the old interface.
28f540f4
RM
4688@end deftypefun
4689
4690@node Stream Buffering
4691@section Stream Buffering
4692
4693@cindex buffering of streams
4694Characters that are written to a stream are normally accumulated and
4695transmitted asynchronously to the file in a block, instead of appearing
4696as soon as they are output by the application program. Similarly,
4697streams often retrieve input from the host environment in blocks rather
4698than on a character-by-character basis. This is called @dfn{buffering}.
4699
4700If you are writing programs that do interactive input and output using
4701streams, you need to understand how buffering works when you design the
4702user interface to your program. Otherwise, you might find that output
4703(such as progress or prompt messages) doesn't appear when you intended
04b9968b 4704it to, or displays some other unexpected behavior.
28f540f4
RM
4705
4706This section deals only with controlling when characters are transmitted
4707between the stream and the file or device, and @emph{not} with how
4708things like echoing, flow control, and the like are handled on specific
4709classes of devices. For information on common control operations on
4710terminal devices, see @ref{Low-Level Terminal Interface}.
4711
4712You can bypass the stream buffering facilities altogether by using the
4713low-level input and output functions that operate on file descriptors
4714instead. @xref{Low-Level I/O}.
4715
4716@menu
4717* Buffering Concepts:: Terminology is defined here.
4718* Flushing Buffers:: How to ensure that output buffers are flushed.
4719* Controlling Buffering:: How to specify what kind of buffering to use.
4720@end menu
4721
4722@node Buffering Concepts
4723@subsection Buffering Concepts
4724
4725There are three different kinds of buffering strategies:
4726
4727@itemize @bullet
4728@item
4729Characters written to or read from an @dfn{unbuffered} stream are
4730transmitted individually to or from the file as soon as possible.
4731@cindex unbuffered stream
4732
4733@item
4734Characters written to a @dfn{line buffered} stream are transmitted to
4735the file in blocks when a newline character is encountered.
4736@cindex line buffered stream
4737
4738@item
4739Characters written to or read from a @dfn{fully buffered} stream are
4740transmitted to or from the file in blocks of arbitrary size.
4741@cindex fully buffered stream
4742@end itemize
4743
4744Newly opened streams are normally fully buffered, with one exception: a
4745stream connected to an interactive device such as a terminal is
4746initially line buffered. @xref{Controlling Buffering}, for information
4747on how to select a different kind of buffering. Usually the automatic
4748selection gives you the most convenient kind of buffering for the file
4749or device you open.
4750
4751The use of line buffering for interactive devices implies that output
4752messages ending in a newline will appear immediately---which is usually
4753what you want. Output that doesn't end in a newline might or might not
4754show up immediately, so if you want them to appear immediately, you
4755should flush buffered output explicitly with @code{fflush}, as described
4756in @ref{Flushing Buffers}.
4757
4758@node Flushing Buffers
4759@subsection Flushing Buffers
4760
4761@cindex flushing a stream
4762@dfn{Flushing} output on a buffered stream means transmitting all
4763accumulated characters to the file. There are many circumstances when
4764buffered output on a stream is flushed automatically:
4765
4766@itemize @bullet
4767@item
4768When you try to do output and the output buffer is full.
4769
4770@item
4771When the stream is closed. @xref{Closing Streams}.
4772
19c3f208 4773@item
28f540f4
RM
4774When the program terminates by calling @code{exit}.
4775@xref{Normal Termination}.
4776
4777@item
4778When a newline is written, if the stream is line buffered.
4779
4780@item
4781Whenever an input operation on @emph{any} stream actually reads data
4782from its file.
4783@end itemize
4784
4785If you want to flush the buffered output at another time, call
4786@code{fflush}, which is declared in the header file @file{stdio.h}.
4787@pindex stdio.h
4788
4789@comment stdio.h
f65fd747 4790@comment ISO
28f540f4 4791@deftypefun int fflush (FILE *@var{stream})
171e9210 4792@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4793This function causes any buffered output on @var{stream} to be delivered
4794to the file. If @var{stream} is a null pointer, then
4795@code{fflush} causes buffered output on @emph{all} open output streams
4796to be flushed.
4797
4798This function returns @code{EOF} if a write error occurs, or zero
4799otherwise.
4800@end deftypefun
4801
7b4161bb
UD
4802@comment stdio.h
4803@comment POSIX
4804@deftypefun int fflush_unlocked (FILE *@var{stream})
171e9210 4805@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb 4806The @code{fflush_unlocked} function is equivalent to the @code{fflush}
1dc843f7 4807function except that it does not implicitly lock the stream.
7b4161bb
UD
4808@end deftypefun
4809
4810The @code{fflush} function can be used to flush all streams currently
4811opened. While this is useful in some situations it does often more than
4812necessary since it might be done in situations when terminal input is
4813required and the program wants to be sure that all output is visible on
4814the terminal. But this means that only line buffered streams have to be
4815flushed. Solaris introduced a function especially for this. It was
1f77f049 4816always available in @theglibc{} in some form but never officially
7b4161bb
UD
4817exported.
4818
9deee4bb 4819@comment stdio_ext.h
7b4161bb
UD
4820@comment GNU
4821@deftypefun void _flushlbf (void)
171e9210 4822@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
7b4161bb
UD
4823The @code{_flushlbf} function flushes all line buffered streams
4824currently opened.
4825
4826This function is declared in the @file{stdio_ext.h} header.
4827@end deftypefun
4828
28f540f4
RM
4829@strong{Compatibility Note:} Some brain-damaged operating systems have
4830been known to be so thoroughly fixated on line-oriented input and output
4831that flushing a line buffered stream causes a newline to be written!
4832Fortunately, this ``feature'' seems to be becoming less common. You do
a7a93d50 4833not need to worry about this with @theglibc{}.
28f540f4 4834
7b4161bb
UD
4835In some situations it might be useful to not flush the output pending
4836for a stream but instead simply forget it. If transmission is costly
4837and the output is not needed anymore this is valid reasoning. In this
4838situation a non-standard function introduced in Solaris and available in
1f77f049 4839@theglibc{} can be used.
7b4161bb
UD
4840
4841@comment stdio_ext.h
4842@comment GNU
4843@deftypefun void __fpurge (FILE *@var{stream})
171e9210 4844@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{}}}
7b4161bb
UD
4845The @code{__fpurge} function causes the buffer of the stream
4846@var{stream} to be emptied. If the stream is currently in read mode all
4847input in the buffer is lost. If the stream is in output mode the
4848buffered output is not written to the device (or whatever other
c703cd7a 4849underlying storage) and the buffer is cleared.
7b4161bb
UD
4850
4851This function is declared in @file{stdio_ext.h}.
4852@end deftypefun
28f540f4
RM
4853
4854@node Controlling Buffering
4855@subsection Controlling Which Kind of Buffering
4856
4857After opening a stream (but before any other operations have been
4858performed on it), you can explicitly specify what kind of buffering you
4859want it to have using the @code{setvbuf} function.
4860@cindex buffering, controlling
4861
4862The facilities listed in this section are declared in the header
4863file @file{stdio.h}.
4864@pindex stdio.h
4865
4866@comment stdio.h
f65fd747 4867@comment ISO
28f540f4 4868@deftypefun int setvbuf (FILE *@var{stream}, char *@var{buf}, int @var{mode}, size_t @var{size})
171e9210 4869@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4870This function is used to specify that the stream @var{stream} should
4871have the buffering mode @var{mode}, which can be either @code{_IOFBF}
4872(for full buffering), @code{_IOLBF} (for line buffering), or
4873@code{_IONBF} (for unbuffered input/output).
4874
4875If you specify a null pointer as the @var{buf} argument, then @code{setvbuf}
4876allocates a buffer itself using @code{malloc}. This buffer will be freed
4877when you close the stream.
4878
4879Otherwise, @var{buf} should be a character array that can hold at least
4880@var{size} characters. You should not free the space for this array as
4881long as the stream remains open and this array remains its buffer. You
4882should usually either allocate it statically, or @code{malloc}
4883(@pxref{Unconstrained Allocation}) the buffer. Using an automatic array
4884is not a good idea unless you close the file before exiting the block
4885that declares the array.
4886
4887While the array remains a stream buffer, the stream I/O functions will
4888use the buffer for their internal purposes. You shouldn't try to access
4889the values in the array directly while the stream is using it for
4890buffering.
4891
4892The @code{setvbuf} function returns zero on success, or a nonzero value
4893if the value of @var{mode} is not valid or if the request could not
4894be honored.
4895@end deftypefun
4896
4897@comment stdio.h
f65fd747 4898@comment ISO
28f540f4
RM
4899@deftypevr Macro int _IOFBF
4900The value of this macro is an integer constant expression that can be
4901used as the @var{mode} argument to the @code{setvbuf} function to
4902specify that the stream should be fully buffered.
4903@end deftypevr
4904
4905@comment stdio.h
f65fd747 4906@comment ISO
28f540f4
RM
4907@deftypevr Macro int _IOLBF
4908The value of this macro is an integer constant expression that can be
4909used as the @var{mode} argument to the @code{setvbuf} function to
4910specify that the stream should be line buffered.
4911@end deftypevr
4912
4913@comment stdio.h
f65fd747 4914@comment ISO
28f540f4
RM
4915@deftypevr Macro int _IONBF
4916The value of this macro is an integer constant expression that can be
4917used as the @var{mode} argument to the @code{setvbuf} function to
4918specify that the stream should be unbuffered.
4919@end deftypevr
4920
4921@comment stdio.h
f65fd747 4922@comment ISO
28f540f4
RM
4923@deftypevr Macro int BUFSIZ
4924The value of this macro is an integer constant expression that is good
4925to use for the @var{size} argument to @code{setvbuf}. This value is
4926guaranteed to be at least @code{256}.
4927
4928The value of @code{BUFSIZ} is chosen on each system so as to make stream
19c3f208 4929I/O efficient. So it is a good idea to use @code{BUFSIZ} as the size
28f540f4
RM
4930for the buffer when you call @code{setvbuf}.
4931
4932Actually, you can get an even better value to use for the buffer size
4933by means of the @code{fstat} system call: it is found in the
4934@code{st_blksize} field of the file attributes. @xref{Attribute Meanings}.
4935
4936Sometimes people also use @code{BUFSIZ} as the allocation size of
4937buffers used for related purposes, such as strings used to receive a
4938line of input with @code{fgets} (@pxref{Character Input}). There is no
4939particular reason to use @code{BUFSIZ} for this instead of any other
4940integer, except that it might lead to doing I/O in chunks of an
4941efficient size.
4942@end deftypevr
4943
4944@comment stdio.h
f65fd747 4945@comment ISO
28f540f4 4946@deftypefun void setbuf (FILE *@var{stream}, char *@var{buf})
171e9210 4947@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4948If @var{buf} is a null pointer, the effect of this function is
4949equivalent to calling @code{setvbuf} with a @var{mode} argument of
4950@code{_IONBF}. Otherwise, it is equivalent to calling @code{setvbuf}
4951with @var{buf}, and a @var{mode} of @code{_IOFBF} and a @var{size}
4952argument of @code{BUFSIZ}.
4953
4954The @code{setbuf} function is provided for compatibility with old code;
4955use @code{setvbuf} in all new programs.
4956@end deftypefun
4957
4958@comment stdio.h
4959@comment BSD
4960@deftypefun void setbuffer (FILE *@var{stream}, char *@var{buf}, size_t @var{size})
171e9210 4961@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4962If @var{buf} is a null pointer, this function makes @var{stream} unbuffered.
4963Otherwise, it makes @var{stream} fully buffered using @var{buf} as the
4964buffer. The @var{size} argument specifies the length of @var{buf}.
4965
4966This function is provided for compatibility with old BSD code. Use
4967@code{setvbuf} instead.
4968@end deftypefun
4969
4970@comment stdio.h
4971@comment BSD
4972@deftypefun void setlinebuf (FILE *@var{stream})
171e9210 4973@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
28f540f4
RM
4974This function makes @var{stream} be line buffered, and allocates the
4975buffer for you.
4976
4977This function is provided for compatibility with old BSD code. Use
4978@code{setvbuf} instead.
4979@end deftypefun
4980
7b4161bb 4981It is possible to query whether a given stream is line buffered or not
1f77f049
JM
4982using a non-standard function introduced in Solaris and available in
4983@theglibc{}.
7b4161bb
UD
4984
4985@comment stdio_ext.h
4986@comment GNU
4987@deftypefun int __flbf (FILE *@var{stream})
171e9210 4988@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
7b4161bb
UD
4989The @code{__flbf} function will return a nonzero value in case the
4990stream @var{stream} is line buffered. Otherwise the return value is
4991zero.
4992
4993This function is declared in the @file{stdio_ext.h} header.
4994@end deftypefun
4995
4996Two more extensions allow to determine the size of the buffer and how
4997much of it is used. These functions were also introduced in Solaris.
4998
4999@comment stdio_ext.h
5000@comment GNU
5001@deftypefun size_t __fbufsize (FILE *@var{stream})
171e9210 5002@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acsafe{}}
7b4161bb
UD
5003The @code{__fbufsize} function return the size of the buffer in the
5004stream @var{stream}. This value can be used to optimize the use of the
5005stream.
5006
5007This function is declared in the @file{stdio_ext.h} header.
5008@end deftypefun
5009
5010@comment stdio_ext.h
5011@comment GNU
cc6e48bc 5012@deftypefun size_t __fpending (FILE *@var{stream})
171e9210 5013@safety{@prelim{}@mtsafe{@mtsrace{:stream}}@asunsafe{@asucorrupt{}}@acsafe{}}
cc6e48bc 5014The @code{__fpending}
f126ef67 5015function returns the number of bytes currently in the output buffer.
c703cd7a 5016For wide-oriented streams the measuring unit is wide characters. This
f126ef67 5017function should not be used on buffers in read mode or opened read-only.
7b4161bb
UD
5018
5019This function is declared in the @file{stdio_ext.h} header.
5020@end deftypefun
5021
28f540f4
RM
5022@node Other Kinds of Streams
5023@section Other Kinds of Streams
5024
1f77f049 5025@Theglibc{} provides ways for you to define additional kinds of
28f540f4
RM
5026streams that do not necessarily correspond to an open file.
5027
5028One such type of stream takes input from or writes output to a string.
5029These kinds of streams are used internally to implement the
5030@code{sprintf} and @code{sscanf} functions. You can also create such a
5031stream explicitly, using the functions described in @ref{String Streams}.
5032
5033More generally, you can define streams that do input/output to arbitrary
5034objects using functions supplied by your program. This protocol is
5035discussed in @ref{Custom Streams}.
5036
5037@strong{Portability Note:} The facilities described in this section are
5038specific to GNU. Other systems or C implementations might or might not
5039provide equivalent functionality.
5040
5041@menu
19c3f208 5042* String Streams:: Streams that get data from or put data in
162ba701 5043 a string or memory buffer.
28f540f4 5044* Custom Streams:: Defining your own streams with an arbitrary
162ba701 5045 input data source and/or output data sink.
28f540f4
RM
5046@end menu
5047
5048@node String Streams
5049@subsection String Streams
5050
5051@cindex stream, for I/O to a string
5052@cindex string stream
5053The @code{fmemopen} and @code{open_memstream} functions allow you to do
5054I/O to a string or memory buffer. These facilities are declared in
5055@file{stdio.h}.
5056@pindex stdio.h
5057
5058@comment stdio.h
5059@comment GNU
5060@deftypefun {FILE *} fmemopen (void *@var{buf}, size_t @var{size}, const char *@var{opentype})
171e9210
AO
5061@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@acsmem{} @aculock{}}}
5062@c Unlike open_memstream, fmemopen does (indirectly) call _IO_link_in,
5063@c bringing with it additional potential for async trouble with
5064@c list_all_lock.
28f540f4
RM
5065This function opens a stream that allows the access specified by the
5066@var{opentype} argument, that reads from or writes to the buffer specified
5067by the argument @var{buf}. This array must be at least @var{size} bytes long.
5068
5069If you specify a null pointer as the @var{buf} argument, @code{fmemopen}
04b9968b
UD
5070dynamically allocates an array @var{size} bytes long (as with @code{malloc};
5071@pxref{Unconstrained Allocation}). This is really only useful
28f540f4
RM
5072if you are going to write things to the buffer and then read them back
5073in again, because you have no way of actually getting a pointer to the
5074buffer (for this, try @code{open_memstream}, below). The buffer is
417d6b34 5075freed when the stream is closed.
28f540f4
RM
5076
5077The argument @var{opentype} is the same as in @code{fopen}
8b7fb588 5078(@pxref{Opening Streams}). If the @var{opentype} specifies
28f540f4
RM
5079append mode, then the initial file position is set to the first null
5080character in the buffer. Otherwise the initial file position is at the
5081beginning of the buffer.
5082
5083When a stream open for writing is flushed or closed, a null character
5084(zero byte) is written at the end of the buffer if it fits. You
5085should add an extra byte to the @var{size} argument to account for this.
5086Attempts to write more than @var{size} bytes to the buffer result
5087in an error.
5088
5089For a stream open for reading, null characters (zero bytes) in the
5090buffer do not count as ``end of file''. Read operations indicate end of
5091file only when the file position advances past @var{size} bytes. So, if
5092you want to read characters from a null-terminated string, you should
5093supply the length of the string as the @var{size} argument.
5094@end deftypefun
5095
5096Here is an example of using @code{fmemopen} to create a stream for
5097reading from a string:
5098
5099@smallexample
5100@include memopen.c.texi
5101@end smallexample
5102
5103This program produces the following output:
5104
5105@smallexample
5106Got f
5107Got o
5108Got o
5109Got b
5110Got a
5111Got r
5112@end smallexample
5113
5114@comment stdio.h
5115@comment GNU
5116@deftypefun {FILE *} open_memstream (char **@var{ptr}, size_t *@var{sizeloc})
171e9210 5117@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
28f540f4 5118This function opens a stream for writing to a buffer. The buffer is
29402b12
RM
5119allocated dynamically and grown as necessary, using @code{malloc}.
5120After you've closed the stream, this buffer is your responsibility to
5121clean up using @code{free} or @code{realloc}. @xref{Unconstrained Allocation}.
28f540f4
RM
5122
5123When the stream is closed with @code{fclose} or flushed with
5124@code{fflush}, the locations @var{ptr} and @var{sizeloc} are updated to
5125contain the pointer to the buffer and its size. The values thus stored
5126remain valid only as long as no further output on the stream takes
5127place. If you do more output, you must flush the stream again to store
5128new values before you use them again.
5129
5130A null character is written at the end of the buffer. This null character
5131is @emph{not} included in the size value stored at @var{sizeloc}.
5132
a5a0310d
UD
5133You can move the stream's file position with @code{fseek} or
5134@code{fseeko} (@pxref{File Positioning}). Moving the file position past
5135the end of the data already written fills the intervening space with
5136zeroes.
28f540f4
RM
5137@end deftypefun
5138
5139Here is an example of using @code{open_memstream}:
5140
5141@smallexample
5142@include memstrm.c.texi
5143@end smallexample
5144
5145This program produces the following output:
5146
5147@smallexample
5148buf = `hello', size = 5
5149buf = `hello, world', size = 12
5150@end smallexample
5151
28f540f4
RM
5152@node Custom Streams
5153@subsection Programming Your Own Custom Streams
5154@cindex custom streams
5155@cindex programming your own streams
5156
5157This section describes how you can make a stream that gets input from an
5158arbitrary data source or writes output to an arbitrary data sink
52cea457
UD
5159programmed by you. We call these @dfn{custom streams}. The functions
5160and types described here are all GNU extensions.
28f540f4
RM
5161
5162@c !!! this does not talk at all about the higher-level hooks
5163
5164@menu
5165* Streams and Cookies:: The @dfn{cookie} records where to fetch or
162ba701 5166 store data that is read or written.
28f540f4 5167* Hook Functions:: How you should define the four @dfn{hook
162ba701 5168 functions} that a custom stream needs.
28f540f4
RM
5169@end menu
5170
5171@node Streams and Cookies
5172@subsubsection Custom Streams and Cookies
5173@cindex cookie, for custom stream
5174
5175Inside every custom stream is a special object called the @dfn{cookie}.
5176This is an object supplied by you which records where to fetch or store
5177the data read or written. It is up to you to define a data type to use
5178for the cookie. The stream functions in the library never refer
5179directly to its contents, and they don't even know what the type is;
5180they record its address with type @code{void *}.
5181
5182To implement a custom stream, you must specify @emph{how} to fetch or
5183store the data in the specified place. You do this by defining
5184@dfn{hook functions} to read, write, change ``file position'', and close
5185the stream. All four of these functions will be passed the stream's
5186cookie so they can tell where to fetch or store the data. The library
5187functions don't know what's inside the cookie, but your functions will
5188know.
5189
5190When you create a custom stream, you must specify the cookie pointer,
19c3f208 5191and also the four hook functions stored in a structure of type
28f540f4
RM
5192@code{cookie_io_functions_t}.
5193
5194These facilities are declared in @file{stdio.h}.
5195@pindex stdio.h
5196
5197@comment stdio.h
5198@comment GNU
5199@deftp {Data Type} {cookie_io_functions_t}
19c3f208 5200This is a structure type that holds the functions that define the
28f540f4
RM
5201communications protocol between the stream and its cookie. It has
5202the following members:
5203
5204@table @code
5205@item cookie_read_function_t *read
5206This is the function that reads data from the cookie. If the value is a
f2ea0f5b 5207null pointer instead of a function, then read operations on this stream
28f540f4
RM
5208always return @code{EOF}.
5209
5210@item cookie_write_function_t *write
5211This is the function that writes data to the cookie. If the value is a
5212null pointer instead of a function, then data written to the stream is
5213discarded.
5214
5215@item cookie_seek_function_t *seek
5216This is the function that performs the equivalent of file positioning on
5217the cookie. If the value is a null pointer instead of a function, calls
a5a0310d
UD
5218to @code{fseek} or @code{fseeko} on this stream can only seek to
5219locations within the buffer; any attempt to seek outside the buffer will
5220return an @code{ESPIPE} error.
28f540f4
RM
5221
5222@item cookie_close_function_t *close
5223This function performs any appropriate cleanup on the cookie when
5224closing the stream. If the value is a null pointer instead of a
5225function, nothing special is done to close the cookie when the stream is
5226closed.
5227@end table
5228@end deftp
5229
5230@comment stdio.h
5231@comment GNU
5232@deftypefun {FILE *} fopencookie (void *@var{cookie}, const char *@var{opentype}, cookie_io_functions_t @var{io-functions})
171e9210 5233@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@acsmem{} @aculock{}}}
28f540f4
RM
5234This function actually creates the stream for communicating with the
5235@var{cookie} using the functions in the @var{io-functions} argument.
5236The @var{opentype} argument is interpreted as for @code{fopen};
5237see @ref{Opening Streams}. (But note that the ``truncate on
5238open'' option is ignored.) The new stream is fully buffered.
5239
5240The @code{fopencookie} function returns the newly created stream, or a null
5241pointer in case of an error.
5242@end deftypefun
5243
5244@node Hook Functions
5245@subsubsection Custom Stream Hook Functions
5246@cindex hook functions (of custom streams)
5247
5248Here are more details on how you should define the four hook functions
5249that a custom stream needs.
5250
5251You should define the function to read data from the cookie as:
5252
5253@smallexample
62ecda3d 5254ssize_t @var{reader} (void *@var{cookie}, char *@var{buffer}, size_t @var{size})
28f540f4
RM
5255@end smallexample
5256
5257This is very similar to the @code{read} function; see @ref{I/O
5258Primitives}. Your function should transfer up to @var{size} bytes into
5259the @var{buffer}, and return the number of bytes read, or zero to
5260indicate end-of-file. You can return a value of @code{-1} to indicate
5261an error.
5262
5263You should define the function to write data to the cookie as:
5264
5265@smallexample
62ecda3d 5266ssize_t @var{writer} (void *@var{cookie}, const char *@var{buffer}, size_t @var{size})
28f540f4
RM
5267@end smallexample
5268
5269This is very similar to the @code{write} function; see @ref{I/O
5270Primitives}. Your function should transfer up to @var{size} bytes from
5271the buffer, and return the number of bytes written. You can return a
247c3ede
PB
5272value of @code{0} to indicate an error. You must not return any
5273negative value.
28f540f4
RM
5274
5275You should define the function to perform seek operations on the cookie
5276as:
5277
5278@smallexample
c1e36819 5279int @var{seeker} (void *@var{cookie}, off64_t *@var{position}, int @var{whence})
28f540f4
RM
5280@end smallexample
5281
5282For this function, the @var{position} and @var{whence} arguments are
c1e36819 5283interpreted as for @code{fgetpos}; see @ref{Portable Positioning}.
28f540f4 5284
19c3f208 5285After doing the seek operation, your function should store the resulting
28f540f4
RM
5286file position relative to the beginning of the file in @var{position}.
5287Your function should return a value of @code{0} on success and @code{-1}
5288to indicate an error.
5289
5290You should define the function to do cleanup operations on the cookie
5291appropriate for closing the stream as:
5292
5293@smallexample
5294int @var{cleaner} (void *@var{cookie})
5295@end smallexample
5296
5297Your function should return @code{-1} to indicate an error, and @code{0}
5298otherwise.
5299
5300@comment stdio.h
5301@comment GNU
fff763a5 5302@deftp {Data Type} cookie_read_function_t
28f540f4
RM
5303This is the data type that the read function for a custom stream should have.
5304If you declare the function as shown above, this is the type it will have.
5305@end deftp
5306
5307@comment stdio.h
5308@comment GNU
fff763a5 5309@deftp {Data Type} cookie_write_function_t
28f540f4
RM
5310The data type of the write function for a custom stream.
5311@end deftp
5312
5313@comment stdio.h
5314@comment GNU
fff763a5 5315@deftp {Data Type} cookie_seek_function_t
28f540f4
RM
5316The data type of the seek function for a custom stream.
5317@end deftp
5318
5319@comment stdio.h
5320@comment GNU
fff763a5 5321@deftp {Data Type} cookie_close_function_t
28f540f4
RM
5322The data type of the close function for a custom stream.
5323@end deftp
5324
5325@ignore
5326Roland says:
5327
5328@quotation
5329There is another set of functions one can give a stream, the
5330input-room and output-room functions. These functions must
5331understand stdio internals. To describe how to use these
5332functions, you also need to document lots of how stdio works
5333internally (which isn't relevant for other uses of stdio).
5334Perhaps I can write an interface spec from which you can write
5335good documentation. But it's pretty complex and deals with lots
5336of nitty-gritty details. I think it might be better to let this
5337wait until the rest of the manual is more done and polished.
5338@end quotation
5339@end ignore
5340
5341@c ??? This section could use an example.
0501d603
UD
5342
5343
5344@node Formatted Messages
5345@section Formatted Messages
5346@cindex formatted messages
5347
5348On systems which are based on System V messages of programs (especially
5349the system tools) are printed in a strict form using the @code{fmtmsg}
5350function. The uniformity sometimes helps the user to interpret messages
cf29ffbe 5351and the strictness tests of the @code{fmtmsg} function ensure that the
0501d603
UD
5352programmer follows some minimal requirements.
5353
5354@menu
5355* Printing Formatted Messages:: The @code{fmtmsg} function.
5356* Adding Severity Classes:: Add more severity classes.
5357* Example:: How to use @code{fmtmsg} and @code{addseverity}.
5358@end menu
5359
5360
5361@node Printing Formatted Messages
5362@subsection Printing Formatted Messages
5363
5364Messages can be printed to standard error and/or to the console. To
cf29ffbe 5365select the destination the programmer can use the following two values,
0501d603
UD
5366bitwise OR combined if wanted, for the @var{classification} parameter of
5367@code{fmtmsg}:
5368
5369@vtable @code
5370@item MM_PRINT
5371Display the message in standard error.
5372@item MM_CONSOLE
5373Display the message on the system console.
5374@end vtable
5375
f2ea0f5b 5376The erroneous piece of the system can be signalled by exactly one of the
0501d603
UD
5377following values which also is bitwise ORed with the
5378@var{classification} parameter to @code{fmtmsg}:
5379
5380@vtable @code
5381@item MM_HARD
5382The source of the condition is some hardware.
5383@item MM_SOFT
5384The source of the condition is some software.
5385@item MM_FIRM
5386The source of the condition is some firmware.
5387@end vtable
5388
5389A third component of the @var{classification} parameter to @code{fmtmsg}
5390can describe the part of the system which detects the problem. This is
5391done by using exactly one of the following values:
5392
5393@vtable @code
5394@item MM_APPL
f2ea0f5b 5395The erroneous condition is detected by the application.
0501d603 5396@item MM_UTIL
f2ea0f5b 5397The erroneous condition is detected by a utility.
0501d603 5398@item MM_OPSYS
f2ea0f5b 5399The erroneous condition is detected by the operating system.
0501d603
UD
5400@end vtable
5401
5402A last component of @var{classification} can signal the results of this
5403message. Exactly one of the following values can be used:
5404
5405@vtable @code
5406@item MM_RECOVER
5407It is a recoverable error.
5408@item MM_NRECOV
5409It is a non-recoverable error.
5410@end vtable
5411
5412@comment fmtmsg.h
5413@comment XPG
5414@deftypefun int fmtmsg (long int @var{classification}, const char *@var{label}, int @var{severity}, const char *@var{text}, const char *@var{action}, const char *@var{tag})
171e9210 5415@safety{@prelim{}@mtsafe{}@asunsafe{@asulock{}}@acsafe{}}
0501d603
UD
5416Display a message described by its parameters on the device(s) specified
5417in the @var{classification} parameter. The @var{label} parameter
5418identifies the source of the message. The string should consist of two
5419colon separated parts where the first part has not more than 10 and the
04b9968b 5420second part not more than 14 characters. The @var{text} parameter
f2ea0f5b 5421describes the condition of the error, the @var{action} parameter possible
0501d603
UD
5422steps to recover from the error and the @var{tag} parameter is a
5423reference to the online documentation where more information can be
5424found. It should contain the @var{label} value and a unique
5425identification number.
5426
cf29ffbe 5427Each of the parameters can be a special value which means this value
0501d603
UD
5428is to be omitted. The symbolic names for these values are:
5429
5430@vtable @code
5431@item MM_NULLLBL
5432Ignore @var{label} parameter.
5433@item MM_NULLSEV
5434Ignore @var{severity} parameter.
5435@item MM_NULLMC
5436Ignore @var{classification} parameter. This implies that nothing is
5437actually printed.
5438@item MM_NULLTXT
5439Ignore @var{text} parameter.
5440@item MM_NULLACT
5441Ignore @var{action} parameter.
5442@item MM_NULLTAG
5443Ignore @var{tag} parameter.
5444@end vtable
5445
cf29ffbe 5446There is another way certain fields can be omitted from the output to
0501d603 5447standard error. This is described below in the description of
0bc93a2f 5448environment variables influencing the behavior.
0501d603
UD
5449
5450The @var{severity} parameter can have one of the values in the following
5451table:
5452@cindex severity class
5453
5454@vtable @code
5455@item MM_NOSEV
5456Nothing is printed, this value is the same as @code{MM_NULLSEV}.
5457@item MM_HALT
5458This value is printed as @code{HALT}.
5459@item MM_ERROR
5460This value is printed as @code{ERROR}.
5461@item MM_WARNING
5462This value is printed as @code{WARNING}.
5463@item MM_INFO
5464This value is printed as @code{INFO}.
5465@end vtable
5466
5467The numeric value of these five macros are between @code{0} and
5468@code{4}. Using the environment variable @code{SEV_LEVEL} or using the
5469@code{addseverity} function one can add more severity levels with their
5470corresponding string to print. This is described below
5471(@pxref{Adding Severity Classes}).
5472
5473@noindent
5474If no parameter is ignored the output looks like this:
5475
5476@smallexample
5477@var{label}: @var{severity-string}: @var{text}
5478TO FIX: @var{action} @var{tag}
5479@end smallexample
5480
5481The colons, new line characters and the @code{TO FIX} string are
5482inserted if necessary, i.e., if the corresponding parameter is not
5483ignored.
5484
5485This function is specified in the X/Open Portability Guide. It is also
04b9968b 5486available on all systems derived from System V.
0501d603 5487
cf29ffbe 5488The function returns the value @code{MM_OK} if no error occurred. If
0501d603
UD
5489only the printing to standard error failed, it returns @code{MM_NOMSG}.
5490If printing to the console fails, it returns @code{MM_NOCON}. If
cf29ffbe 5491nothing is printed @code{MM_NOTOK} is returned. Among situations where
0501d603
UD
5492all outputs fail this last value is also returned if a parameter value
5493is incorrect.
5494@end deftypefun
5495
0bc93a2f 5496There are two environment variables which influence the behavior of
0501d603
UD
5497@code{fmtmsg}. The first is @code{MSGVERB}. It is used to control the
5498output actually happening on standard error (@emph{not} the console
04b9968b 5499output). Each of the five fields can explicitly be enabled. To do
0501d603 5500this the user has to put the @code{MSGVERB} variable with a format like
cf29ffbe 5501the following in the environment before calling the @code{fmtmsg} function
0501d603
UD
5502the first time:
5503
5504@smallexample
95fdc6a0 5505MSGVERB=@var{keyword}[:@var{keyword}[:@dots{}]]
0501d603
UD
5506@end smallexample
5507
5508Valid @var{keyword}s are @code{label}, @code{severity}, @code{text},
5509@code{action}, and @code{tag}. If the environment variable is not given
5510or is the empty string, a not supported keyword is given or the value is
5511somehow else invalid, no part of the message is masked out.
5512
0bc93a2f 5513The second environment variable which influences the behavior of
0501d603 5514@code{fmtmsg} is @code{SEV_LEVEL}. This variable and the change in the
0bc93a2f 5515behavior of @code{fmtmsg} is not specified in the X/Open Portability
0501d603 5516Guide. It is available in System V systems, though. It can be used to
cf29ffbe 5517introduce new severity levels. By default, only the five severity levels
0501d603
UD
5518described above are available. Any other numeric value would make
5519@code{fmtmsg} print nothing.
5520
5521If the user puts @code{SEV_LEVEL} with a format like
5522
5523@smallexample
95fdc6a0 5524SEV_LEVEL=[@var{description}[:@var{description}[:@dots{}]]]
0501d603
UD
5525@end smallexample
5526
5527@noindent
5528in the environment of the process before the first call to
5529@code{fmtmsg}, where @var{description} has a value of the form
5530
5531@smallexample
5532@var{severity-keyword},@var{level},@var{printstring}
5533@end smallexample
5534
5535The @var{severity-keyword} part is not used by @code{fmtmsg} but it has
5536to be present. The @var{level} part is a string representation of a
5537number. The numeric value must be a number greater than 4. This value
5538must be used in the @var{severity} parameter of @code{fmtmsg} to select
5539this class. It is not possible to overwrite any of the predefined
5540classes. The @var{printstring} is the string printed when a message of
5541this class is processed by @code{fmtmsg} (see above, @code{fmtsmg} does
5542not print the numeric value but instead the string representation).
5543
5544
5545@node Adding Severity Classes
5546@subsection Adding Severity Classes
5547@cindex severity class
5548
04b9968b 5549There is another possibility to introduce severity classes besides using
0501d603
UD
5550the environment variable @code{SEV_LEVEL}. This simplifies the task of
5551introducing new classes in a running program. One could use the
5552@code{setenv} or @code{putenv} function to set the environment variable,
cf29ffbe 5553but this is toilsome.
0501d603
UD
5554
5555@deftypefun int addseverity (int @var{severity}, const char *@var{string})
171e9210 5556@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{} @asulock{}}@acunsafe{@aculock{} @acsmem{}}}
04b9968b 5557This function allows the introduction of new severity classes which can be
0501d603
UD
5558addressed by the @var{severity} parameter of the @code{fmtmsg} function.
5559The @var{severity} parameter of @code{addseverity} must match the value
04b9968b 5560for the parameter with the same name of @code{fmtmsg}, and @var{string}
0501d603
UD
5561is the string printed in the actual messages instead of the numeric
5562value.
5563
5564If @var{string} is @code{NULL} the severity class with the numeric value
5565according to @var{severity} is removed.
5566
cf29ffbe
UD
5567It is not possible to overwrite or remove one of the default severity
5568classes. All calls to @code{addseverity} with @var{severity} set to one
5569of the values for the default classes will fail.
5570
0501d603
UD
5571The return value is @code{MM_OK} if the task was successfully performed.
5572If the return value is @code{MM_NOTOK} something went wrong. This could
5573mean that no more memory is available or a class is not available when
5574it has to be removed.
5575
5576This function is not specified in the X/Open Portability Guide although
cf29ffbe 5577the @code{fmtsmg} function is. It is available on System V systems.
0501d603
UD
5578@end deftypefun
5579
5580
5581@node Example
5582@subsection How to use @code{fmtmsg} and @code{addseverity}
5583
c703cd7a 5584Here is a simple example program to illustrate the use of both
0501d603
UD
5585functions described in this section.
5586
5587@smallexample
5588@include fmtmsgexpl.c.texi
5589@end smallexample
5590
04b9968b
UD
5591The second call to @code{fmtmsg} illustrates a use of this function as
5592it usually occurs on System V systems, which heavily use this function.
5593It seems worthwhile to give a short explanation here of how this system
5594works on System V. The value of the
0bc93a2f 5595@var{label} field (@code{UX:cat}) says that the error occurred in the
0501d603
UD
5596Unix program @code{cat}. The explanation of the error follows and the
5597value for the @var{action} parameter is @code{"refer to manual"}. One
04b9968b 5598could be more specific here, if necessary. The @var{tag} field contains,
0501d603
UD
5599as proposed above, the value of the string given for the @var{label}
5600parameter, and additionally a unique ID (@code{001} in this case). For
5601a GNU environment this string could contain a reference to the
5602corresponding node in the Info page for the program.
5603
5604@noindent
5605Running this program without specifying the @code{MSGVERB} and
5606@code{SEV_LEVEL} function produces the following output:
5607
5608@smallexample
5609UX:cat: NOTE2: invalid syntax
5610TO FIX: refer to manual UX:cat:001
5611@end smallexample
5612
5613We see the different fields of the message and how the extra glue (the
c703cd7a 5614colons and the @code{TO FIX} string) is printed. But only one of the
0501d603
UD
5615three calls to @code{fmtmsg} produced output. The first call does not
5616print anything because the @var{label} parameter is not in the correct
8b7fb588
UD
5617form. The string must contain two fields, separated by a colon
5618(@pxref{Printing Formatted Messages}). The third @code{fmtmsg} call
0501d603
UD
5619produced no output since the class with the numeric value @code{6} is
5620not defined. Although a class with numeric value @code{5} is also not
04b9968b 5621defined by default, the call to @code{addseverity} introduces it and
0ea554bf 5622the second call to @code{fmtmsg} produces the above output.
0501d603
UD
5623
5624When we change the environment of the program to contain
5625@code{SEV_LEVEL=XXX,6,NOTE} when running it we get a different result:
5626
5627@smallexample
5628UX:cat: NOTE2: invalid syntax
5629TO FIX: refer to manual UX:cat:001
5630label:foo: NOTE: text
5631TO FIX: action tag
5632@end smallexample
5633
04b9968b 5634Now the third call to @code{fmtmsg} produced some output and we see how
0501d603
UD
5635the string @code{NOTE} from the environment variable appears in the
5636message.
5637
04b9968b 5638Now we can reduce the output by specifying which fields we are
0501d603
UD
5639interested in. If we additionally set the environment variable
5640@code{MSGVERB} to the value @code{severity:label:action} we get the
5641following output:
5642
5643@smallexample
5644UX:cat: NOTE2
5645TO FIX: refer to manual
5646label:foo: NOTE
5647TO FIX: action
5648@end smallexample
5649
5650@noindent
5651I.e., the output produced by the @var{text} and the @var{tag} parameters
cf29ffbe 5652to @code{fmtmsg} vanished. Please also note that now there is no colon
0501d603 5653after the @code{NOTE} and @code{NOTE2} strings in the output. This is
04b9968b 5654not necessary since there is no more output on this line because the text
0501d603 5655is missing.