summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-02 12:41:20 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-02 12:41:20 +0200
commit2e53930ee9f06102ee39bf95b21775a563679d31 (patch)
treec9b65db0e54b576e91eed4e61dc1aafb2453aa3f /utf8.h
parent95c829fb75ed7c4ecb933073f5ed59d2b647c7f4 (diff)
optimizations in search and sorting
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/utf8.h b/utf8.h
index 942f98e7..7ec66ef5 100644
--- a/utf8.h
+++ b/utf8.h
@@ -19,6 +19,9 @@
by Jeff Bezanson
placed in the public domain Fall 2005
*/
+#ifndef __UTF8_H
+#define __UTF8_H
+
#include <stdint.h>
#include <stdarg.h>
@@ -97,3 +100,5 @@ int u8_valid (const char *str,
const char *
utfcasestr (const char *s1, const char *s2);
+
+#endif