wchar.h: improve wchar_t support in Bionic

Change-Id: Iffd41046fd0933c66542abf7627a1569522dfcb2
This commit is contained in:
David 'Digit' Turner
2010-06-14 17:18:35 -07:00
parent da3019b553
commit 3527fd6f0d
35 changed files with 1683 additions and 127 deletions

View File

@@ -70,9 +70,9 @@ typedef enum {
WC_TYPE_MAX
} wctype_t;
#define WCHAR_MAX 255
#define WCHAR_MIN 0
#define WEOF (-1)
#define WCHAR_MAX INT_MAX
#define WCHAR_MIN INT_MIN
#define WEOF ((wchar_t)(-1))
extern wint_t btowc(int);
extern int fwprintf(FILE *, const wchar_t *, ...);