10 lines
221 B
C
10 lines
221 B
C
/*
|
|
* This function converts the latin1 ISO_8859-1 encoding into utf-8.
|
|
*/
|
|
char *latin_to_utf8(char *input);
|
|
|
|
/*
|
|
* This function converts the utf-8 encoding into latin1 ISO_8859-1.
|
|
*/
|
|
char *utf8_to_latin(char *input);
|