diff options
author | Javier <dev.git@javispedro.com> | 2022-11-27 22:41:15 +0100 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-11-27 22:41:15 +0100 |
commit | f2a1a9f49d98de0f2d71e8c65bad9379634975d7 (patch) | |
tree | da462fa8e68a093b60994686347838b3f89f79b6 /unicode.h | |
parent | 544a184a4373fc29ba9d030bd8efb59fb56a28e2 (diff) | |
download | vbados-f2a1a9f49d98de0f2d71e8c65bad9379634975d7.tar.gz vbados-f2a1a9f49d98de0f2d71e8c65bad9379634975d7.zip |
refactor to add per-mount options to vbsf
Diffstat (limited to 'unicode.h')
-rw-r--r-- | unicode.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ static inline uint8_t lookup_codepage( TSRDATAPTR data, uint16_t cp ) // dst and src CAN'T BE THE SAME !!!! // Returns resulting length or 0 if buffer overflow // -static uint16_t local_to_utf8_n( TSRDATAPTR data, uint8_t *dst, char far *src, uint16_t buflen, uint16_t count ) +static uint16_t local_to_utf8_n( TSRDATAPTR data, uint8_t *dst, const char far *src, uint16_t buflen, uint16_t count ) { uint16_t len = 0; // Resulting length uint16_t cp; // Unicode Code Point |