aboutsummaryrefslogtreecommitdiff
path: root/libc/test/run-ctype-test.c
blob: d491b4942138ac38cde7a5cf0e58ba6ccc80344d (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
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
/*
 * Copyright 2013-2015 IBM Corp.
 *
 * This file is run with the skiboot libc files rather than system libc.
 * This means we have a bit of "fun" with actually executing the tests on
 * the host.
 * Patches to make this less ugly are very welcome.
 */

#include <config.h>
#include <stdarg.h>

#include "../ctype/isdigit.c"
#include "../ctype/isprint.c"
#include "../ctype/isspace.c"
#include "../ctype/isxdigit.c"
#include "../ctype/tolower.c"
#include "../ctype/toupper.c"

int skiboot_isdigit(int ch);
int skiboot_isprint(int ch);
int skiboot_isspace(int ch);
int skiboot_isxdigit(int ch);
int skiboot_tolower(int ch);
int skiboot_toupper(int ch);

int skiboot_isdigit(int ch)
{
	return isdigit(ch);
}

int skiboot_isprint(int ch)
{
	return isprint(ch);
}

int skiboot_isspace(int ch)
{
	return isspace(ch);
}

int skiboot_isxdigit(int ch)
{
	return isxdigit(ch);
}

int skiboot_tolower(int ch)
{
	return tolower(ch);
}

int skiboot_toupper(int ch)
{
	return toupper(ch);
}