summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/dieticonv.h
blob: 540ef2f6f692db778a03dcfd3a24c275566e0830 (plain)
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>