summaryrefslogtreecommitdiff
path: root/utf8proc.c
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2015-03-06 12:43:37 -0500
committerSteven G. Johnson <stevenj@mit.edu>2015-03-06 12:43:37 -0500
commit402883c78e2f448694e8be62c4cb9f3e203487ad (patch)
tree436a83c098d0a3825184fd402830a27b98e57951 /utf8proc.c
parent86447ad060d6f4edf01f2a64b9598dfeeb6e6f7d (diff)
downloadlibutf8proc-402883c78e2f448694e8be62c4cb9f3e203487ad.tar.gz
libutf8proc-402883c78e2f448694e8be62c4cb9f3e203487ad.tar.bz2
rename back to utf8proc now that we are taking over maintenance
Diffstat (limited to 'utf8proc.c')
-rw-r--r--utf8proc.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/utf8proc.c b/utf8proc.c
index 15acecc..4035876 100644
--- a/utf8proc.c
+++ b/utf8proc.c
@@ -39,7 +39,7 @@
*/
-#include "mojibake.h"
+#include "utf8proc.h"
#include "utf8proc_data.c"
@@ -81,13 +81,11 @@ DLLEXPORT const int8_t utf8proc_utf8class[256] = {
#define UTF8PROC_HANGUL_S_START 0xAC00
#define UTF8PROC_HANGUL_S_END 0xD7A4
-/* in libmojibake, we append "m" to whatever version of utf8proc
- we have merged with most recently + whatever increment would
- correspond to semantic versioning rules. Currently, we use 1.2m
- since we started with utf8proc 1.1.6 and added features (Unicode 7
- support) in a backwards-compatible manner. */
+/* Should follow semantic-versioning rules (semver.org) based on API
+ compatibility. (Note that the shared-library version number will
+ be different, being based on ABI compatibility.): */
DLLEXPORT const char *utf8proc_version(void) {
- return "1.2m";
+ return "1.2-dev";
}
DLLEXPORT const char *utf8proc_errmsg(ssize_t errcode) {