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