17a84e134Smrg/************************************************************ 27a84e134Smrg 37a84e134SmrgCopyright 1993, 1994, 1998 The Open Group 47a84e134Smrg 57a84e134SmrgPermission to use, copy, modify, distribute, and sell this software and its 67a84e134Smrgdocumentation for any purpose is hereby granted without fee, provided that 77a84e134Smrgthe above copyright notice appear in all copies and that both that 87a84e134Smrgcopyright notice and this permission notice appear in supporting 97a84e134Smrgdocumentation. 107a84e134Smrg 117a84e134SmrgThe above copyright notice and this permission notice shall be included in 127a84e134Smrgall copies or substantial portions of the Software. 137a84e134Smrg 147a84e134SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 157a84e134SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 167a84e134SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 177a84e134SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 187a84e134SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 197a84e134SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 207a84e134Smrg 217a84e134SmrgExcept as contained in this notice, the name of The Open Group shall not be 227a84e134Smrgused in advertising or otherwise to promote the sale, use or other dealings 237a84e134Smrgin this Software without prior written authorization from The Open Group. 247a84e134Smrg 257a84e134Smrg********************************************************/ 267a84e134Smrg 27f353fbadSmrg#ifdef HAVE_WCTYPE_H 287a84e134Smrg#include <wctype.h> 29f353fbadSmrg#ifdef HAVE_WIDEC_H 307a84e134Smrg#include <widec.h> 317a84e134Smrg#define wcslen(c) wslen(c) 327a84e134Smrg#define wcscpy(d, s) wscpy(d, s) 337a84e134Smrg#define wcsncpy(d, s, l) wsncpy(d, s, l) 347a84e134Smrg#endif 357a84e134Smrg#endif 367a84e134Smrg 37f353fbadSmrg#ifdef HAVE_WCHAR_H 387a84e134Smrg#include <wchar.h> 397a84e134Smrg#endif 407a84e134Smrg 417a84e134Smrg#include <stdlib.h> 427a84e134Smrg 437a84e134Smrg#ifdef USE_XWCHAR_STRING 447a84e134Smrgint _Xwcslen 457a84e134Smrg( 467a84e134Smrg wchar_t *wstr 477a84e134Smrg ); 487a84e134Smrg 497a84e134Smrg#define wcslen(c) _Xwcslen(c) 507a84e134Smrg 517a84e134Smrgwchar_t *_Xwcscpy 527a84e134Smrg( 537a84e134Smrg wchar_t *wstr1, 547a84e134Smrg wchar_t *wstr2 557a84e134Smrg ); 567a84e134Smrg 577a84e134Smrg#define wcscpy(d,s) _Xwcscpy(d,s) 587a84e134Smrg 597a84e134Smrgwchar_t *_Xwcsncpy 607a84e134Smrg( 617a84e134Smrg wchar_t *wstr1, 627a84e134Smrg wchar_t *wstr2, 637a84e134Smrg int len 647a84e134Smrg ); 657a84e134Smrg 667a84e134Smrg#define wcsncpy(d, s, l) _Xwcsncpy(d, s, l) 677a84e134Smrg 687a84e134Smrg#ifdef USE_XMBTOWC 697a84e134Smrg#define mbtowc(wc, s, l) _Xmbtowc(wc, s, l) 707a84e134Smrg#endif 717a84e134Smrg#endif 727a84e134Smrg 737a84e134Smrgwchar_t _Xaw_atowc 747a84e134Smrg( 757a84e134Smrg#if NeedWidePrototypes 767a84e134Smrg int c 777a84e134Smrg#else 787a84e134Smrg unsigned char c 797a84e134Smrg#endif 807a84e134Smrg ); 817a84e134Smrg 827a84e134Smrg#ifndef HAS_ISW_FUNCS 83efbcb2bfSmrg# include <ctype.h> 84efbcb2bfSmrg# ifndef isascii 85efbcb2bfSmrg# define isascii(c) ((unsigned char)(c) < 127) 86efbcb2bfSmrg# endif 87efbcb2bfSmrg# ifndef toascii 88efbcb2bfSmrg# define toascii(c) ((c) & 0x7f) 89efbcb2bfSmrg# endif 90efbcb2bfSmrg# ifndef iswspace 91efbcb2bfSmrg# define iswspace(c) (isascii(c) && isspace(toascii(c))) 92efbcb2bfSmrg# endif 937a84e134Smrg#endif 947a84e134Smrg 957a84e134Smrg#if !defined(iswalnum) && !defined(HAVE_ISWALNUM) 967a84e134Smrg#define iswalnum(c) _Xaw_iswalnum(c) 97ab902922Smrg#endif 987a84e134Smrgint _Xaw_iswalnum 997a84e134Smrg( 1007a84e134Smrg wchar_t c 1017a84e134Smrg ); 102