nsgenbind
Loading...
Searching...
No Matches
output.h
Go to the documentation of this file.
1/* generated output handlers
2 *
3 * This file is part of nsgenbind.
4 * Licensed under the MIT License,
5 * http://www.opensource.org/licenses/mit-license.php
6 * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
7 */
8
9#ifndef nsgenbind_output_h
10#define nsgenbind_output_h
11
12struct opctx;
13
23int output_open(const char *filename, struct opctx **opctx_out);
24
28int output_close(struct opctx *opctx);
29
33int outputf(struct opctx *opctx, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
34
35int outputc(struct opctx *opctx, int c);
36
40int output_line(struct opctx *opctx);
41
42#endif
DOMString filename
Definition html.idl:1561
int output_line(struct opctx *opctx)
Definition output.c:98
int outputf(struct opctx *opctx, const char *fmt,...) __attribute__((format(printf
int int outputc(struct opctx *opctx, int c)
Definition output.c:88
int output_close(struct opctx *opctx)
Definition output.c:52
int output_open(const char *filename, struct opctx **opctx_out)
Definition output.c:23
Definition output.c:17