aboutsummaryrefslogtreecommitdiffstats
path: root/src/utf8.h
diff options
context:
space:
mode:
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__ */