blob: f4611bc73fc386eb000591f2efde33c34a6aa257 (
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
|
#include <ctype.h>
#include "limits.h"
#include "nonstd/assert.h"
#include "nonstd/internal.h"
/** convert a lowercase letter to uppercase **/
int toupper(int c)
{
unsigned char *map = __libc(TOUPPER);
ASSERT_REPRESENTABLE(c, 0, UCHAR_MAX, unsigned char, EOF);
/*
RETURN_SUCCESS(ARGUMENT(c) converted to uppercase);
RETURN_FAILURE(ARGUMENT(c), ARGUMENT(c) was not a lowercase letter or it has no equivalent upercase letter);
*/
return map[c];
}
/***
converts a lowercase letter to its equivalent uppercase letter in the current
locale.
***/
/*
LC_CTYPE
STDC(1)
*/
|