chiark / gitweb /
Merge latest Disobedience changes
[disorder] / lib / printf.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
5aff007d 3 * Copyright (C) 2004, 2006-2008 Richard Kettlewell
460b9539 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
05b75f8d
RK
23#include <stdarg.h>
24
460b9539 25struct sink;
26
27int byte_vsinkprintf(struct sink *output,
28 const char *fmt,
29 va_list ap);
681cb9fb 30int byte_sinkprintf(struct sink *output, const char *fmt, ...);
460b9539 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
35int byte_vsnprintf(char buffer[],
36 size_t bufsize,
37 const char *fmt,
38 va_list ap);
39int 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
46int byte_vasprintf(char **ptrp,
47 const char *fmt,
48 va_list ap);
49int byte_asprintf(char **ptrp,
50 const char *fmt,
51 ...)
52 attribute((format (printf, 2, 3)));
53/* analogues of [v]asprintf (uses xmalloc/xrealloc) */
54
55int byte_xvasprintf(char **ptrp,
56 const char *fmt,
57 va_list ap);
58int byte_xasprintf(char **ptrp,
59 const char *fmt,
60 ...)
61 attribute((format (printf, 2, 3)));
62/* same but terminate on error */
63
64int byte_vfprintf(FILE *fp, const char *fmt, va_list ap);
65int 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/*
72Local Variables:
73c-basic-offset:2
74comment-column:40
75End:
76*/