summaryrefslogtreecommitdiffstats
path: root/index.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2018-09-27 23:16:48 +0200
committerpgen <p.gen.progs@gmail.com>2018-10-01 19:36:56 +0200
commitf07e9d15916ac14721c9819c6d245a28f685f42b (patch)
tree20bf5c45117afcfeacf0e4f66d19ccf68c9e3d4f /index.h
parent1b52c4c75422742f04363048dda64999adb8402c (diff)
Create utf8.[ch] and change code accordingly
Change multibyte to utf8 to specify that we only support UTF-8 encoding.
Diffstat (limited to 'index.h')
-rw-r--r--index.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.h b/index.h
index e1fc7ae..a22d236 100644
--- a/index.h
+++ b/index.h
@@ -5,8 +5,8 @@
/* Ternary Search Tree specific structures */
/* *************************************** */
-typedef struct tst_node_s tst_node_t;
-typedef struct sub_tst_s sub_tst_t;
+typedef struct tst_node_s tst_node_t;
+typedef struct sub_tst_s sub_tst_t;
#if 0 /* here for coherency but not used. */
void tst_cleanup(tst_node_t * p);