makefile class finish
This commit is contained in:
6
test/srcs/putchar.c
Normal file
6
test/srcs/putchar.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "test.h"
|
||||
|
||||
void ft_putchar(char c)
|
||||
{
|
||||
write(1, &c, 1);
|
||||
}
|
||||
6
test/srcs/transform.c
Normal file
6
test/srcs/transform.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "test.h"
|
||||
|
||||
int transform(int a)
|
||||
{
|
||||
return (--a);
|
||||
}
|
||||
Reference in New Issue
Block a user