chiark / gitweb /
faa8d7ab1755b71a402235beae5b3405c1708eeb
[sympathy.git] / src / utf8.h
1 /*
2  * utf8.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /*
10  * $Id$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.1  2008/02/22 19:12:05  james
16  * *** empty log message ***
17  *
18  *
19  */
20
21 #ifndef __UTF8_H__
22 #define __UTF8_H__
23
24
25 typedef struct
26 {
27   int in_escape;
28   int in_csi;
29   int in_utf8;
30   int csi_ptr;
31   char csi_buf[VT102_CSI_LEN];
32 } UTF8_Parser;
33
34 #endif /* __UTF8_H__ */