1 2 3 4 5 6 7 8 9 10 11 12
enum charset { INVALID=0, ISO_8859_1, UTF_8, UCS_2, UCS_4 }; #define ic_from(x) (((x) )&0xffff) #define ic_to(x) (((x)>>16)&0xffff) #include <iconv.h>