summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/isprint/test2/test2.c
blob: 435d31ed5cd6ae46fae88ea6161a52330684225c (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
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information. 
//

/*=============================================================
**
** Source: isprint.c
**
** Purpose: Negative test for the isprint API. Call isprint 
**			to test if out of range characters are 
**			not printable.
**
**
**============================================================*/
#include <palsuite.h>

int __cdecl main(int argc, char *argv[])
{
    int err;

    /*Initialize the PAL environment*/
    err = PAL_Initialize(argc, argv);
    if(0 != err)
    {
        return FAIL;
    }

    /*check that function fails for values that are not printable*/
    err = isprint(0x15);
    if(err)
    {
        Fail("\nSucceeded when it should have failed because 0x15 "
        "is not in the range of printable characters\n");
    }

    err = isprint(0xAA);
    if(err)
    {
        Fail("\nSucceeded when it should have failed because 0xAA "
        "is not in the range of printable characters\n");
    }
    
    /* check carriage return */
    if(0 != isprint(0x0d))
    {
        Fail("\nSucceeded when it should have failed because 0x0d "
        "is not in the range of printable characters\n");
    }
    
    /* check line feed */
    if(0 != isprint(0x0a))
    {
        Fail("\nSucceeded when it should have failed because 0x0a "
        "is not in the range of printable characters\n");
    }
    
    PAL_Terminate();
    return PASS;
}