fix the UTF8 implementation in libgu

This commit is contained in:
krasimir
2015-05-06 15:51:12 +00:00
parent dfd42bade2
commit 77f14f3cc8
2 changed files with 82 additions and 71 deletions

View File

@@ -32,7 +32,10 @@ gu_out_utf8(GuUCS ucs, GuOut* out, GuExn* err)
// Helper functions used in other modules
GuUCS
gu_utf8_decode(const uint8_t** utf8);
gu_utf8_decode(const uint8_t** buf);
void
gu_utf8_encode(GuUCS ucs, uint8_t** buf);
void
gu_in_utf8_buf(uint8_t** buf, GuIn* in, GuExn* err);