Fix conversion of local encoding to utf-8

svn path=/trunk/netsurf/; revision=13240
This commit is contained in:
Ole Loots 2011-12-04 17:18:07 +00:00
parent b97ccb1f0f
commit 49ff4d5900
2 changed files with 3 additions and 6 deletions

View File

@ -15,8 +15,9 @@ utf8_convert_ret utf8_to_local_encoding(const char *string,
}
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,
char **result)
{

View File

@ -10,10 +10,6 @@
#include "render/font.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);
#endif