summaryrefslogtreecommitdiff
path: root/src/raptor_nfc_test.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-02-18 23:17:02 -0800
committerDave Beckett <dave@dajobe.org>2010-02-18 23:17:02 -0800
commitdf323fdeec237aec6940209d2ba001eef7c24f4d (patch)
tree81a9d9d4df704a7efe63ea58b6b200213523d119 /src/raptor_nfc_test.c
parent40e98efa07e5405476ebf43f95508380e9c443be (diff)
downloadraptor-df323fdeec237aec6940209d2ba001eef7c24f4d.tar.gz
(raptor_unicode_utf8_string_get_char): Renamed from raptor_unicode_decode_utf8_char()
Diffstat (limited to 'src/raptor_nfc_test.c')
-rw-r--r--src/raptor_nfc_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raptor_nfc_test.c b/src/raptor_nfc_test.c
index 9a1a2251..fa3daf17 100644
--- a/src/raptor_nfc_test.c
+++ b/src/raptor_nfc_test.c
@@ -120,7 +120,7 @@ utf8_print(const unsigned char *input, int length, FILE *stream)
while(i < length && *input) {
unsigned long c;
- int size = raptor_unicode_decode_utf8_char(&c, input, length-i);
+ int size = raptor_unicode_utf8_string_get_char(&c, input, length-i);
if(size <= 0)
return;
if(i)