summaryrefslogtreecommitdiff
path: root/src/ctype/_toupper.c
blob: 5abdb172c7888acfdb500a92f35fee3e35e6fbbc (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
#if 0

#include <ctype.h>

/** convert a lowercase letter to uppercase **/

#define _toupper(__c)                                               toupper(__c)

/***
converts a lowercase letter to its equivalent uppercase letter in the current
locale.
***/

/*
ASSERT_REPRESENTABLE(c, 0, UCHAR_MAX, unsigned char, EOF)
RETURN_SUCCESS(ARGUMENT(c) converted to uppercase)
UNDEFINED(ARGUMENT(c) is not a lowercase letter)
LC_CTYPE
XOPEN(4)
XOBSOLETE(700, FUNCTION(toupper))
*/


#endif