diff options
| author | krasimir <krasimir@chalmers.se> | 2015-05-06 15:51:12 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2015-05-06 15:51:12 +0000 |
| commit | 01c4836d4d2560347786175e8a4af5baa1bd23e2 (patch) | |
| tree | 7410e51d67256ff42b2981a78b4d83ba0f0b0d5a /src/runtime/c/gu/utf8.h | |
| parent | c1265db3a71e7c2708c56a7748eea5490c11cd2c (diff) | |
fix the UTF8 implementation in libgu
Diffstat (limited to 'src/runtime/c/gu/utf8.h')
| -rw-r--r-- | src/runtime/c/gu/utf8.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/runtime/c/gu/utf8.h b/src/runtime/c/gu/utf8.h index db7dccaf9..3ad28946d 100644 --- a/src/runtime/c/gu/utf8.h +++ b/src/runtime/c/gu/utf8.h @@ -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); |
