aboutsummaryrefslogtreecommitdiff
path: root/src/outstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/outstream.h')
-rw-r--r--src/outstream.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/outstream.h b/src/outstream.h
deleted file mode 100644
index 8ef92c4f..00000000
--- a/src/outstream.h
+++ /dev/null
@@ -1,47 +0,0 @@
1/* Copyrights 2002 Luis Figueiredo (stdio@netc.pt) All rights reserved.
2 *
3 * See the LICENSE file
4 *
5 * The origin of this software must not be misrepresented, either by
6 * explicit claim or by omission. Since few users ever read sources,
7 * credits must appear in the documentation.
8 *
9 * date: Sat Mar 30 14:25:25 GMT 2002
10 *
11 * stream functions
12 */
13
14#ifndef _OUTSTREAM_H_
15#define _OUTSTREAM_H_
16
17#ifdef HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24
25#ifndef WIN32
26#include <unistd.h>
27#endif
28
29#include "memory.h"
30
31struct outstream {
32 FILE *fstream;
33 char *fname;
34 int todelete;
35 int wsize,rsize;
36 long wrotesize;
37 long varsize;
38 int flags;
39 struct outstream *next;
40};
41
42int __ILWS_add_outstream(struct outstream *, char *,FILE *,int);
43struct outstream *__ILWS_init_outstream_list();
44void __ILWS_delete_next_outstream(struct outstream *);
45void __ILWS_delete_outstream_list(struct outstream *);
46void __ILWS_delete_outstream(struct outstream *);
47#endif