diff options
author | corvid <corvid@lavabit.com> | 2011-01-06 06:36:39 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-01-06 06:36:39 +0000 |
commit | 9464c3387e5aae945a52dd62646e4def0e0fd9a9 (patch) | |
tree | 4e60fbdc02b6c7f713fcef2f6882fef9eaddaff1 | |
parent | 56a52362e9b10d271c75d9cbd4833a791752b554 (diff) |
utf8
-rw-r--r-- | src/utf8.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utf8.cc b/src/utf8.cc index 0138c616..a4a8504b 100644 --- a/src/utf8.cc +++ b/src/utf8.cc @@ -9,7 +9,7 @@ * (at your option) any later version. */ -#include <fltk/utf.h> +#include <FL/fl_utf8.h> #include "../dlib/dlib.h" /* TRUE/FALSE */ #include "utf8.hh" @@ -45,7 +45,7 @@ uint_t a_Utf8_end_of_char(const char *str, uint_t i) */ uint_t a_Utf8_decode(const char* str, const char* end, int* len) { - return utf8decode(str, end, len); + return fl_utf8decode(str, end, len); } /* @@ -53,7 +53,7 @@ uint_t a_Utf8_decode(const char* str, const char* end, int* len) */ int a_Utf8_encode(unsigned int ucs, char *buf) { - return utf8encode(ucs, buf); + return fl_utf8encode(ucs, buf); } /* @@ -63,7 +63,7 @@ int a_Utf8_encode(unsigned int ucs, char *buf) */ int a_Utf8_test(const char* src, unsigned int srclen) { - return utf8test(src, srclen); + return fl_utf8test(src, srclen); } /* |