Thread: 'C-' and 'C+'
View Single Post
Old May 10th, 2005, 10:44 AM   #17
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
There's not much point in including an entire header file for one function. If you like, you can make your own toupper function:
char toupper (char ch)
{
    return ch & 0xDF;
}
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote