| /* |
| * CDDL HEADER START |
| * |
| * The contents of this file are subject to the terms of the |
| * Common Development and Distribution License, Version 1.0 only |
| * (the "License"). You may not use this file except in compliance |
| * with the License. |
| * |
| * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
| * or http://www.opensolaris.org/os/licensing. |
| * See the License for the specific language governing permissions |
| * and limitations under the License. |
| * |
| * When distributing Covered Code, include this CDDL HEADER in each |
| * file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
| * If applicable, add the following below this CDDL HEADER, with the |
| * fields enclosed by brackets "[]" replaced with your own identifying |
| * information: Portions Copyright [yyyy] [name of copyright owner] |
| * |
| * CDDL HEADER END |
| */ |
| /* |
| * Copyright 2014 Garrett D'Amore <garrett@damore.org> |
| * |
| * Copyright 2004 Sun Microsystems, Inc. All rights reserved. |
| * Use is subject to license terms. |
| */ |
| |
| /* Copyright (c) 1986 AT&T */ |
| /* All Rights Reserved */ |
| |
| |
| /* This module is created for NLS on Jun.04.86 */ |
| |
| #ifndef _WIDEC_H |
| #define _WIDEC_H |
| |
| #include <sys/feature_tests.h> |
| |
| #include <stdio.h> /* For definition of FILE */ |
| #include <euc.h> |
| #include <wchar.h> |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| /* Character based input and output functions */ |
| 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 |
| |
| /* wchar_t string operation functions */ |
| 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_STDC) && !defined(__XOPEN_OR_POSIX) |
| |
| 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 /* defined(_LONGLONG_TYPE) */ |
| |
| #endif /* !defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX) */ |
| |
| /* Returns the code set number for the process code c. */ |
| #define WCHAR_SHIFT 7 |
| #define WCHAR_S_MASK 0x7f |
| #define wcsetno(c) \ |
| (((c)&0x20000000)?(((c)&0x10000000)?1:3):(((c)&0x10000000)?2:0)) |
| |
| /* Aliases... */ |
| #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 /* defined(_LONGLONG_TYPE) && !defined(__lint) */ |
| #define watoi(s) ((int)wstol((s), (wchar_t **)0, 10)) |
| #define watof(s) wstod((s), (wchar_t **)0) |
| |
| /* |
| * other macros. |
| */ |
| #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 /* _WIDEC_H */ |