* clear out some warnings by gcc 9.3.1.
[alpine.git] / pico / osdep / color.h
blob87aaf363efdd7c079aa15b75eb53d495c215d9d2
1 /*
2 * $Id: color.h 1012 2008-03-26 00:44:22Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006-2008 University of Washington
6 * Copyright 2013-2020 Eduardo Chappa
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
18 #ifndef PICO_OSDEP_COLOR_INCLUDED
19 #define PICO_OSDEP_COLOR_INCLUDED
22 /* exported prototypes */
23 void StartInverse(void);
24 void flip_inv(int);
25 void EndInverse(void);
26 int InverseState(void);
27 int StartBold(void);
28 void EndBold(void);
29 void StartUnderline(void);
30 void EndUnderline(void);
31 int pico_trans_color(void);
32 void pico_endcolor(void);
33 void pico_toggle_color(int);
34 void pico_set_nfg_color(void);
35 void pico_set_nbg_color(void);
38 #endif /* PICO_OSDEP_COLOR_INCLUDED */