1 /*
2 Copyright (c) 2002 Red Hat Incorporated.
3 All rights reserved.
4 Modified (m) 2017 Thomas Wolff to refer to generated Unicode data tables.
5 
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8 
9 Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
11 
12 Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
15 
16 The name of Red Hat Incorporated may not be used to endorse
17 or promote products derived from this software without specific
18 prior written permission.
19 
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 ARE DISCLAIMED.  IN NO EVENT SHALL RED HAT INCORPORATED BE LIABLE FOR ANY
24 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 /*
32 FUNCTION
33 	<<iswctype>>, <<iswctype_l>>---extensible wide-character test
34 
35 INDEX
36 	iswctype
37 
38 INDEX
39 	iswctype_l
40 
41 SYNOPSIS
42 	#include <wctype.h>
43 	int iswctype(wint_t <[c]>, wctype_t <[desc]>);
44 
45 	#include <wctype.h>
46 	int iswctype_l(wint_t <[c]>, wctype_t <[desc]>, locale_t <[locale]>);
47 
48 DESCRIPTION
49 <<iswctype>> is a function which classifies wide-character values using the
50 wide-character test specified by <[desc]>.
51 
52 <<iswctype_l>> is like <<iswctype>> but performs the check based on the
53 locale specified by the locale object locale.  If <[locale]> is
54 LC_GLOBAL_LOCALE or not a valid locale object, the behaviour is undefined.
55 
56 RETURNS
57 <<iswctype>>, <<iswctype_l>> return non-zero if and only if <[c]> matches
58 the test specified by <[desc]>.  If <[desc]> is unknown, zero is returned.
59 
60 PORTABILITY
61 <<iswctype>> is C99.
62 <<iswctype_l>> is POSIX-1.2008.
63 
64 No supporting OS subroutines are required.
65 */
66 
67 #define _DEFAULT_SOURCE
68 #include <wctype.h>
69 #include "local.h"
70 
71 int
iswctype(wint_t c,wctype_t desc)72 iswctype (wint_t c, wctype_t desc)
73 {
74   switch (desc)
75     {
76     case WC_ALNUM:
77       return iswalnum (c);
78     case WC_ALPHA:
79       return iswalpha (c);
80     case WC_BLANK:
81       return iswblank (c);
82     case WC_CNTRL:
83       return iswcntrl (c);
84     case WC_DIGIT:
85       return iswdigit (c);
86     case WC_GRAPH:
87       return iswgraph (c);
88     case WC_LOWER:
89       return iswlower (c);
90     case WC_PRINT:
91       return iswprint (c);
92     case WC_PUNCT:
93       return iswpunct (c);
94     case WC_SPACE:
95       return iswspace (c);
96     case WC_UPPER:
97       return iswupper (c);
98     case WC_XDIGIT:
99       return iswxdigit (c);
100     default:
101       return 0; /* eliminate warning */
102     }
103 
104   /* otherwise unknown */
105   return 0;
106 }
107