/* * Author: Manoj Ampalam * * UTF-16 <--> UTF-8 definitions */ #ifndef UTF_H #define UTF_H 1 wchar_t* utf8_to_utf16(const char *); char* utf16_to_utf8(const wchar_t*); #endif