* lib/xprintf.c: Include <config.h> unconditionally.
[gnulib.git] / lib / xprintf.c
1 /* printf wrappers that fail immediately for non-file-related errors
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 #include <config.h>
18
19 #include "xprintf.h"
20
21 #include <errno.h>
22 #include <stdarg.h>
23
24 #include "error.h"
25 #include "exitfail.h"
26 #include "gettext.h"
27
28 /* written by Jim Meyering */
29
30 /* Just like printf, but call error if it fails without setting
31    the error indicator.  */
32 int
33 xprintf (char const *restrict format, ...)
34 {
35   va_list args;
36   va_start (args, format);
37   int err = vprintf (format, args);
38   if (err < 0 && ! ferror (stdout))
39     error (exit_failure, errno, gettext ("cannot perform formatted output"));
40   va_end (args);
41
42   return err;
43 }
44
45 /* Just like fprintf, but call error if it fails without setting
46    the error indicator.  */
47 int
48 xfprintf (FILE *restrict stream, char const *restrict format, ...)
49 {
50   va_list args;
51   va_start (args, format);
52   int err = vfprintf (stream, format, args);
53   if (err < 0 && ! ferror (stream))
54     error (exit_failure, errno, gettext ("cannot perform formatted output"));
55   va_end (args);
56
57   return err;
58 }