summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2014-07-18 14:28:17 -0400
committerSteven G. Johnson <stevenj@mit.edu>2014-07-18 14:28:17 -0400
commit2c4e520a1773a85f346dc3f5361c10bcbeb290e0 (patch)
tree407b26c7793c3706a050713a6753486b8b2aff22
parent8c36e8bc9f07558455477dec67f1276edc72da27 (diff)
downloadlibutf8proc-2c4e520a1773a85f346dc3f5361c10bcbeb290e0.tar.gz
libutf8proc-2c4e520a1773a85f346dc3f5361c10bcbeb290e0.tar.bz2
utf8proc.h -> mojibake.h (closes #10)
-rw-r--r--Makefile2
-rw-r--r--mojibake.h (renamed from utf8proc.h)6
-rw-r--r--utf8proc.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index a9d1aaa..9cbe8ca 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ CaseFolding.txt:
$(CURL) -O http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
-utf8proc.o: utf8proc.h utf8proc.c utf8proc_data.c
+utf8proc.o: mojibake.h utf8proc.c utf8proc_data.c
$(cc) -c -o utf8proc.o utf8proc.c
libmojibake.a: utf8proc.o
diff --git a/utf8proc.h b/mojibake.h
index 3dac24d..8e62268 100644
--- a/utf8proc.h
+++ b/mojibake.h
@@ -22,10 +22,10 @@
/*
- * File name: utf8proc.h
+ * File name: mojibake.h (formerly utf8proc.h)
*
* Description:
- * Header files for libutf8proc, which is a mapping tool for UTF-8 strings
+ * Header files for libmojibake, which is a mapping tool for UTF-8 strings
* with following features:
* - decomposing and composing of strings
* - replacing compatibility characters with their equivalents
@@ -44,7 +44,7 @@
* - rejection of illegal UTF-8 data
* (i.e. UTF-8 encoded UTF-16 surrogates)
* - support for korean hangul characters
- * Unicode Version 5.0.0 is supported.
+ * Unicode Version 7.0.0 is supported.
*/
diff --git a/utf8proc.c b/utf8proc.c
index e6c51f7..1064d4d 100644
--- a/utf8proc.c
+++ b/utf8proc.c
@@ -39,7 +39,7 @@
*/
-#include "utf8proc.h"
+#include "mojibake.h"
#include "utf8proc_data.c"