-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport.h
30 lines (25 loc) · 789 Bytes
/
export.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* export.h
*
* CAVE WALL - Colored Ascii Visual Editor Without Any Loathsome Limitations
* Image export routines - header file
*
* Copyright (C) 2002 Michal Miszewski <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef EXPORT_H
#define EXPORT_H
#define A_ATTRONLY 0xffff0000 /* mask for extracting attrs like bold */
#define CBUF 3000 /* size of exported line buffer */
extern int trueysize;
extern int truexsize;
int open_file(char filename[], int mode);
int end(char buf[CBUF]);
void export_ansi(void);
void export_txt(void);
void export_html(void);
void export(void);
#endif /* EXPORT_H */