8 lines
69 B
C
8 lines
69 B
C
#include "test.h"
|
|
|
|
int to_uppercase(int a)
|
|
{
|
|
a -= 32;
|
|
return(a);
|
|
}
|