summaryrefslogtreecommitdiff
path: root/src/raptor_utf8.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2004-08-11 22:12:01 +0000
committerDave Beckett <dave@dajobe.org>2004-08-11 22:12:01 +0000
commita6a526f532ab55e2ec87a6640fe87c987a72eda4 (patch)
treed9f87e1bbe0e8c1b4dc71db6e2323c8d94bb2917 /src/raptor_utf8.c
parent74bc30af3d22f2aa8e5571afabd4855b18bb0875 (diff)
downloadraptor-a6a526f532ab55e2ec87a6640fe87c987a72eda4.tar.gz
(raptor_utf8_is_nfc): Use raptor_nfc_check.
Diffstat (limited to 'src/raptor_utf8.c')
-rw-r--r--src/raptor_utf8.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raptor_utf8.c b/src/raptor_utf8.c
index 697f0ed6..1606cdbd 100644
--- a/src/raptor_utf8.c
+++ b/src/raptor_utf8.c
@@ -37,6 +37,7 @@
/* Raptor includes */
#include "raptor.h"
#include "raptor_internal.h"
+#include "raptor_nfc.h"
/*
@@ -688,5 +689,5 @@ raptor_utf8_is_nfc(const unsigned char *input, size_t length)
if(plain)
return 1;
- return 1;
+ return raptor_nfc_check(input, length, NULL);
}