-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvterm_escape.h
More file actions
34 lines (23 loc) · 987 Bytes
/
vterm_escape.h
File metadata and controls
34 lines (23 loc) · 987 Bytes
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
31
32
33
#ifndef _VTERM_ESCAPE_H_
#define _VTERM_ESCAPE_H_
/*
LICENSE INFORMATION:
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License (LGPL) as published by the Free Software Foundation.
Please refer to the COPYING file for more information.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Copyright (c) 2004 Bruno T. C. de Oliveira
*/
#include <curses.h>
#include "vterm.h"
void vterm_escape_start(vterm_t *vterm);
void vterm_escape_cancel(vterm_t *vterm);
void try_interpret_escape_seq(vterm_t *vterm);
#endif