/* * Copyright (c) 2017 Apple Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ /*- * Copyright (c)1999 Citrus Project, * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ /* * Common header for __wctype.h and xlocale/___wctype.h */ #ifndef __WCTYPE_H_ #define __WCTYPE_H_ #define ___WCTYPE_H_ #include #include <_bounds.h> #include <_types.h> #include #include <_types/_wctype_t.h> _LIBC_SINGLE_BY_DEFAULT() #ifndef WEOF #define WEOF __DARWIN_WEOF #endif #ifndef __DARWIN_WCTYPE_TOP_inline #define __DARWIN_WCTYPE_TOP_inline __header_inline #endif #include /* * Use inline functions if we are allowed to and the compiler supports them. */ #if !defined(_DONT_USE_CTYPE_INLINE_) && \ (defined(_USE_CTYPE_INLINE_) || defined(__GNUC__) || defined(__cplusplus)) __DARWIN_WCTYPE_TOP_inline int iswalnum(wint_t _wc) { return (__istype(_wc, _CTYPE_A|_CTYPE_D)); } __DARWIN_WCTYPE_TOP_inline int iswalpha(wint_t _wc) { return (__istype(_wc, _CTYPE_A)); } __DARWIN_WCTYPE_TOP_inline int iswcntrl(wint_t _wc) { return (__istype(_wc, _CTYPE_C)); } __DARWIN_WCTYPE_TOP_inline int iswctype(wint_t _wc, wctype_t _charclass) { return (__istype(_wc, _charclass)); } __DARWIN_WCTYPE_TOP_inline int iswdigit(wint_t _wc) { return (__isctype(_wc, _CTYPE_D)); } __DARWIN_WCTYPE_TOP_inline int iswgraph(wint_t _wc) { return (__istype(_wc, _CTYPE_G)); } __DARWIN_WCTYPE_TOP_inline int iswlower(wint_t _wc) { return (__istype(_wc, _CTYPE_L)); } __DARWIN_WCTYPE_TOP_inline int iswprint(wint_t _wc) { return (__istype(_wc, _CTYPE_R)); } __DARWIN_WCTYPE_TOP_inline int iswpunct(wint_t _wc) { return (__istype(_wc, _CTYPE_P)); } __DARWIN_WCTYPE_TOP_inline int iswspace(wint_t _wc) { return (__istype(_wc, _CTYPE_S)); } __DARWIN_WCTYPE_TOP_inline int iswupper(wint_t _wc) { return (__istype(_wc, _CTYPE_U)); } __DARWIN_WCTYPE_TOP_inline int iswxdigit(wint_t _wc) { return (__isctype(_wc, _CTYPE_X)); } __DARWIN_WCTYPE_TOP_inline wint_t towlower(wint_t _wc) { return (__tolower(_wc)); } __DARWIN_WCTYPE_TOP_inline wint_t towupper(wint_t _wc) { return (__toupper(_wc)); } #else /* not using inlines */ __BEGIN_DECLS int iswalnum(wint_t); int iswalpha(wint_t); int iswcntrl(wint_t); int iswctype(wint_t, wctype_t); int iswdigit(wint_t); int iswgraph(wint_t); int iswlower(wint_t); int iswprint(wint_t); int iswpunct(wint_t); int iswspace(wint_t); int iswupper(wint_t); int iswxdigit(wint_t); wint_t towlower(wint_t); wint_t towupper(wint_t); __END_DECLS #endif /* using inlines */ __BEGIN_DECLS wctype_t wctype(const char *); __END_DECLS #endif /* __WCTYPE_H_ */