generarxml/src/encoding.h

10 lines
221 B
C
Raw Permalink Normal View History

/*
* This function converts the latin1 ISO_8859-1 encoding into utf-8.
*/
2016-10-23 23:17:03 -03:00
char *latin_to_utf8(char *input);
/*
* This function converts the utf-8 encoding into latin1 ISO_8859-1.
*/
2016-10-23 23:17:03 -03:00
char *utf8_to_latin(char *input);