mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-11 13:29:21 +03:00
Fix conversion of local encoding to utf-8
svn path=/trunk/netsurf/; revision=13240
This commit is contained in:
parent
b97ccb1f0f
commit
49ff4d5900
@ -15,8 +15,9 @@ utf8_convert_ret utf8_to_local_encoding(const char *string,
|
|||||||
}
|
}
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
utf8_convert_ret local_encoding_to_utf8(const char *string,
|
|
||||||
|
utf8_convert_ret utf8_from_local_encoding(const char *string,
|
||||||
size_t len,
|
size_t len,
|
||||||
char **result)
|
char **result)
|
||||||
{
|
{
|
||||||
|
@ -10,10 +10,6 @@
|
|||||||
#include "render/font.h"
|
#include "render/font.h"
|
||||||
#include "utils/utf8.h"
|
#include "utils/utf8.h"
|
||||||
|
|
||||||
utf8_convert_ret local_encoding_to_utf8(const char *string,
|
|
||||||
size_t len,
|
|
||||||
char **result);
|
|
||||||
|
|
||||||
int atari_to_ucs4( unsigned char atarichar);
|
int atari_to_ucs4( unsigned char atarichar);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user