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