File:  [DVB] / dietlibc / dieticonv.h
Revision 1.4: download - view: text, annotated - select for diffs
Mon Dec 1 17:42:12 2003 UTC (20 years, 5 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
add UTF-16 (so we can encode SMB file names to Windoze)

enum charset {
  INVALID=0,
  ISO_8859_1,
  UTF_8,
  UCS_2,
  UCS_4,
  UTF_16_BE,
  UTF_16_LE,
  UTF_16
};

#define ic_from(x)	(((x)    )&0xffff)
#define ic_to(x)	(((x)>>16)&0xffff)

#include <iconv.h>

LinuxTV legacy CVS <linuxtv.org/cvs>