Added copyright notices to files
[apps/madtty.git] / inject_csi.h
1 /*
2 LICENSE INFORMATION:
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU Lesser General Public
5 License (LGPL) as published by the Free Software Foundation.
6
7 Please refer to the COPYING file for more information.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17
18 Copyright (c) 2004 Bruno T. C. de Oliveira
19 */
20
21
22 #ifndef btco_ROTE_inject_csi_h
23 #define btco_ROTE_inject_csi_h
24
25 #include "rote.h"
26
27 /* Interprets a CSI escape sequence stored in rt->pd->esbuf,
28  * changing rt to reflect the effect of the sequence. This function
29  * will not change rt->pd->esbuf, rt->pd->escaped or other escape-sequence
30  * related fields in it */
31 void rote_es_interpret_csi(RoteTerm *rt);
32
33 #endif
34