11 lines
117 B
C
11 lines
117 B
C
#include "test.h"
|
|
|
|
int main()
|
|
{
|
|
int a = 't';
|
|
a = to_uppercase(a);
|
|
a = transform(a);
|
|
ft_putchar(a);
|
|
return(0);
|
|
}
|