package dynlib

This commit is contained in:
gingerBill
2019-03-03 12:08:26 +00:00
parent 76a6757ee9
commit 9b4b20e8b1
4 changed files with 29 additions and 2 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ encode_rune :: proc(r: rune) -> ([4]u8, int) {
buf[0] = 0xf0 | u8(r>>18);
buf[1] = 0x80 | u8(r>>12) & mask;
buf[2] = 0x80 | u8(r>>6) & mask;
buf[3] = 0x80 | u8(r) & mask;
buf[3] = 0x80 | u8(r) & mask;
return buf, 4;
}