aboutsummaryrefslogtreecommitdiffstats
path: root/src/utf8.h
diff options
context:
space:
mode:
authorjames <>2008-02-22 23:39:30 +0000
committerjames <>2008-02-22 23:39:30 +0000
commit029a61812e82b58803c618ed53df42180106412f (patch)
treea35826fd1212f55fb0693dac8ebfeee0b6e35180 /src/utf8.h
parent22301df1f4af5937bf96cb85091d5220d206d9bc (diff)
downloadsympathy-029a61812e82b58803c618ed53df42180106412f.tar.gz
sympathy-029a61812e82b58803c618ed53df42180106412f.tar.bz2
sympathy-029a61812e82b58803c618ed53df42180106412f.zip
*** empty log message ***
Diffstat (limited to 'src/utf8.h')
-rw-r--r--src/utf8.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/utf8.h b/src/utf8.h
index faa8d7a..cbfcb7f 100644
--- a/src/utf8.h
+++ b/src/utf8.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.2 2008/02/22 23:39:27 james
+ * *** empty log message ***
+ *
* Revision 1.1 2008/02/22 19:12:05 james
* *** empty log message ***
*
@@ -24,11 +27,9 @@
typedef struct
{
- int in_escape;
- int in_csi;
int in_utf8;
- int csi_ptr;
- char csi_buf[VT102_CSI_LEN];
-} UTF8_Parser;
+ uint8_t utf_buf[4];
+ int utf_ptr;
+} UTF8;
#endif /* __UTF8_H__ */