Files
42_INT_01_libft/test/srcs/to_uppercase.c
2019-11-15 19:39:02 +01:00

8 lines
69 B
C

#include "test.h"
int to_uppercase(int a)
{
a -= 32;
return(a);
}