libc
A portable C Library
Log
|
Files
|
Refs
|
README
toupper.c (68B)
1
#include "ctype.h"
2
3
int
4
(toupper)(int c)
5
{
6
return (_Toupper[c]);
7
}