/**************************************************************
* name: strupper.c
* version: 0.0
* description: converts string to uppercase
* synopsis: pointer to string to convert
* created by: David Clement
* date: ??-FEB-2004
* modified by:
* date:
***************************************************************/
#include <ctype.h>
void strupper (char *s)
{
while (*s)
*s = toupper (*s++);
}
|
|
|