#ifndef _WIDEC_H
#define _WIDEC_H
#include <sys/feature_tests.h>
#include <stdio.h>
#include <euc.h>
#include <wchar.h>
#ifdef __cplusplus
extern "C" {
#endif
extern wchar_t *getws(wchar_t *);
extern int putws(const wchar_t *);
#if !defined(__lint)
#define getwc(p) fgetwc(p)
#define putwc(x, p) fputwc((x), (p))
#define getwchar() getwc(stdin)
#define putwchar(x) putwc((x), stdout)
#endif
extern wchar_t *strtows(wchar_t *, char *);
extern wchar_t *wscpy(wchar_t *, const wchar_t *);
extern wchar_t *wsncpy(wchar_t *, const wchar_t *, size_t);
extern wchar_t *wscat(wchar_t *, const wchar_t *);
extern wchar_t *wsncat(wchar_t *, const wchar_t *, size_t);
extern wchar_t *wschr(const wchar_t *, wchar_t);
extern wchar_t *wsrchr(const wchar_t *, wchar_t);
extern wchar_t *wspbrk(const wchar_t *, const wchar_t *);
extern wchar_t *wstok(wchar_t *, const wchar_t *);
extern char *wstostr(char *, wchar_t *);
extern int wscmp(const wchar_t *, const wchar_t *);
extern int wsncmp(const wchar_t *, const wchar_t *, size_t);
extern size_t wslen(const wchar_t *);
extern size_t wsspn(const wchar_t *, const wchar_t *);
extern size_t wscspn(const wchar_t *, const wchar_t *);
extern int wscoll(const wchar_t *, const wchar_t *);
extern size_t wsxfrm(wchar_t *, const wchar_t *, size_t);
#if !defined(_STRICT_SYMBOLS)
extern wchar_t *wsdup(const wchar_t *);
extern int wscol(const wchar_t *);
extern double wstod(const wchar_t *, wchar_t **);
extern long wstol(const wchar_t *, wchar_t **, int);
extern int wscasecmp(const wchar_t *, const wchar_t *);
extern int wsncasecmp(const wchar_t *, const wchar_t *, size_t);
extern int wsprintf(wchar_t *, const char *, ...);
#if defined(_LONGLONG_TYPE)
extern long long wstoll(const wchar_t *, wchar_t **, int);
#endif
#endif
#define WCHAR_SHIFT 7
#define WCHAR_S_MASK 0x7f
#define wcsetno(c) \
(((c)&0x20000000)?(((c)&0x10000000)?1:3):(((c)&0x10000000)?2:0))
#define windex wschr
#define wrindex wsrchr
#define watol(s) wstol((s), (wchar_t **)0, 10)
#if defined(_LONGLONG_TYPE) && !defined(__lint)
#define watoll(s) wstoll((s), (wchar_t **)0, 10)
#endif
#define watoi(s) ((int)wstol((s), (wchar_t **)0, 10))
#define watof(s) wstod((s), (wchar_t **)0)
#define WCHAR_CSMASK 0x30000000
#define EUCMASK 0x30000000
#define WCHAR_CS0 0x00000000
#define WCHAR_CS1 0x30000000
#define WCHAR_CS2 0x10000000
#define WCHAR_CS3 0x20000000
#define WCHAR_BYTE_OF(wc, i) (((wc&~0x30000000)>>(7*(3-i)))&0x7f)
#ifdef __cplusplus
}
#endif
#endif