summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/iswxdigit/test1/test1.c
blob: 73ad495856f449431bf84cce2224383c934c6a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*=====================================================================
**
** Source:  test1.c
**
** Purpose: Tests iswxdigit with every possible wide character, ensuring it 
**          returns the correct results.
**
**
**===================================================================*/

#include <palsuite.h>

/*
 *  These are the only wide characters Win2000 recogonizes as valid hex digits.
 */
WCHAR ValidHexDigits[] = 
{
    48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 97, 98, 99, 100,
    101, 102, 65296, 65297, 65298, 65299, 65300, 65301, 65302, 65303, 65304, 65305,
    65313, 65314, 65315, 65316, 65317, 65318, 65345, 65346, 65347, 65348, 65349, 65350,
    0
};

int __cdecl main(int argc, char **argv)
{   
    int i;
    WCHAR c;
    int ret;

    if (PAL_Initialize(argc, argv))
    {
        return FAIL;
    }

    for (i=0; i<=0xFFFF; i++)
    {
        ret = iswxdigit(i);
        c = (WCHAR) i;

        if (ret)
        {
            if (wcschr(ValidHexDigits, c) == NULL)
            {
                /* iswxdigit says its a hex digit.  We know better */
                Fail("iswxdigit incorrectly found %#x to be a hex digit!\n", c);
            }
        }
        else if (wcschr(ValidHexDigits, c) != NULL && c != 0)
        {
            /* iswxdigit says it isn't a hex digit.  We know better */
            Fail("iswxdigit failed to find %#x to be a hex digit!\n", c);
        }
    }

    PAL_Terminate();
    return PASS;
}