11 lines
137 B
C
11 lines
137 B
C
# ifndef TEST_H
|
|
# define TEST_H
|
|
|
|
#include <unistd.h>
|
|
|
|
void ft_putchar(char c);
|
|
int transform(int a);
|
|
int to_uppercase(int a);
|
|
|
|
# endif
|