Missing file.
authorChristoph Mallon <christoph.mallon@gmx.de>
Thu, 29 Nov 2007 16:37:28 +0000 (16:37 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Thu, 29 Nov 2007 16:37:28 +0000 (16:37 +0000)
[r18570]

string_rep.h [new file with mode: 0644]

diff --git a/string_rep.h b/string_rep.h
new file mode 100644 (file)
index 0000000..1df0b5b
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef STRING_REP_H
+#define STRING_REP_H
+
+#include <wchar.h>
+
+typedef wchar_t wchar_rep_t;
+
+#if 0 /* TODO */
+typedef struct string_t {
+       const char *begin;
+       const char *end;
+} string_t;
+#endif
+
+typedef struct wide_string_t {
+       const wchar_rep_t *begin;
+       size_t             size;
+} wide_string_t;
+
+#endif