libt3window
 All Data Structures Functions Variables Typedefs Enumerations Enumerator Modules
convert_output.h
1 /* Copyright (C) 2011 G.P. Halkes
2  This program is free software: you can redistribute it and/or modify
3  it under the terms of the GNU General Public License version 3, as
4  published by the Free Software Foundation.
5 
6  This program is distributed in the hope that it will be useful,
7  but WITHOUT ANY WARRANTY; without even the implied warranty of
8  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9  GNU General Public License for more details.
10 
11  You should have received a copy of the GNU General Public License
12  along with this program. If not, see <http://www.gnu.org/licenses/>.
13 */
14 #ifndef T3_CONVERT_OUTPUT_H
15 #define T3_CONVERT_OUTPUT_H
16 
17 #include "terminal.h"
18 
19 T3_WINDOW_LOCAL t3_bool _t3_init_output_buffer(void);
20 T3_WINDOW_LOCAL void _t3_free_output_buffer(void);
21 T3_WINDOW_LOCAL t3_bool _t3_init_output_converter(const char *encoding);
22 T3_WINDOW_LOCAL void _t3_output_buffer_print(void);
23 
24 #endif
char t3_bool
A boolean type that does not clash with C++ or C99 bool.
Definition: window_api.h:47