aboutsummaryrefslogtreecommitdiffstats
path: root/src/utf8.h
diff options
context:
space:
mode:
authorjames <>2008-02-22 19:12:05 +0000
committerjames <>2008-02-22 19:12:05 +0000
commit22301df1f4af5937bf96cb85091d5220d206d9bc (patch)
tree71020082ddea0c28f6b754778f6b0133b3a0daff /src/utf8.h
parenta7a1526ef4fed8460a87713fac159cc714bfde77 (diff)
downloadsympathy-22301df1f4af5937bf96cb85091d5220d206d9bc.tar.gz
sympathy-22301df1f4af5937bf96cb85091d5220d206d9bc.tar.bz2
sympathy-22301df1f4af5937bf96cb85091d5220d206d9bc.zip
*** empty log message ***
Diffstat (limited to 'src/utf8.h')
-rw-r--r--src/utf8.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/utf8.h b/src/utf8.h
new file mode 100644
index 0000000..faa8d7a
--- /dev/null
+++ b/src/utf8.h
@@ -0,0 +1,34 @@
+/*
+ * utf8.h:
+ *
+ * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
+ * All rights reserved.
+ *
+ */
+
+/*
+ * $Id$
+ */
+
+/*
+ * $Log$
+ * Revision 1.1 2008/02/22 19:12:05 james
+ * *** empty log message ***
+ *
+ *
+ */
+
+#ifndef __UTF8_H__
+#define __UTF8_H__
+
+
+typedef struct
+{
+ int in_escape;
+ int in_csi;
+ int in_utf8;
+ int csi_ptr;
+ char csi_buf[VT102_CSI_LEN];
+} UTF8_Parser;
+
+#endif /* __UTF8_H__ */