]> mj.ucw.cz Git - libucw.git/blobdiff - lib/tagged-text.h
enlarge MAX_ATTR_SIZE
[libucw.git] / lib / tagged-text.h
index 97c07eeb2649fe36c40fee8d136283b8785c5a0d..270bc91d014024704af76979cf300465a66a8685 100644 (file)
@@ -8,14 +8,14 @@
 #define _SHERLOCK_TAGGED_TEXT_H
 
 #include "lib/fastbuf.h"
-#include "charset/unistream.h"
+#include "lib/ff-utf8.h"
 
 /* Reading of tagged text (Unicode values, tags mapped to 0x80000000 and higher) */
 
 #define GET_TAGGED_CHAR(p,u) do {                              \
   u = *p;                                                      \
   if (u >= 0xc0)                                               \
-    GET_UTF8_CHAR(p,u);                                                \
+    GET_UTF8(p,u);                                             \
   else if (u >= 0x80)                                          \
     {                                                          \
       p++;                                                     \