chiark / gitweb /
Columns are now resizable and wide columns are ellipsized. Columns
[disorder] / lib / printf.h
1 /*
2  * This file is part of DisOrder
3  * Copyright (C) 2004, 2006-2008 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20 #ifndef PRINTF_H
21 #define PRINTF_H
22
23 #include <stdarg.h>
24
25 struct sink;
26
27 int byte_vsinkprintf(struct sink *output,
28                      const char *fmt,
29                      va_list ap);
30 int byte_sinkprintf(struct sink *output, const char *fmt, ...);
31 /* partial printf implementation that takes ASCII format strings but
32  * arbitrary byte strings as args to %s and friends.  Lots of bits are
33  * missing! */
34
35 int byte_vsnprintf(char buffer[],
36                    size_t bufsize,
37                    const char *fmt,
38                    va_list ap);
39 int byte_snprintf(char buffer[],
40                   size_t bufsize,
41                   const char *fmt,
42                   ...)
43   attribute((format (printf, 3, 4)));
44 /* analogues of [v]snprintf */
45
46 int byte_vasprintf(char **ptrp,
47                    const char *fmt,
48                    va_list ap);
49 int byte_asprintf(char **ptrp,
50                   const char *fmt,
51                   ...)
52   attribute((format (printf, 2, 3)));
53 /* analogues of [v]asprintf (uses xmalloc/xrealloc) */
54
55 int byte_xvasprintf(char **ptrp,
56                     const char *fmt,
57                     va_list ap);
58 int byte_xasprintf(char **ptrp,
59                    const char *fmt,
60                    ...)
61   attribute((format (printf, 2, 3)));
62 /* same but terminate on error */
63
64 int byte_vfprintf(FILE *fp, const char *fmt, va_list ap);
65 int byte_fprintf(FILE *fp, const char *fmt, ...)
66   attribute((format (printf, 2, 3)));
67 /* analogues of [v]fprintf */
68
69 #endif /* PRINTF_H */
70
71 /*
72 Local Variables:
73 c-basic-offset:2
74 comment-column:40
75 End:
76 */