generarxml/src/encoding.h

10 lines
215 B
C
Raw Normal View History

/*
* This function converts the latin1 ISO_8859-1 encoding into utf-8.
*/
2016-10-16 14:16:03 -03:00
char *latin2utf8(char *input);
/*
* This function converts the utf-8 encoding into latin1 ISO_8859-1.
*/
2016-10-16 14:16:03 -03:00
char *utf82latin(char *input);