explication makefil en cours

This commit is contained in:
Hugo LAMY
2019-11-14 17:05:54 +01:00
parent ac4a5e088c
commit 28e08d8238
15 changed files with 261 additions and 28 deletions

6
test/temp/putchar.c Normal file
View File

@@ -0,0 +1,6 @@
#include "test.h"
void ft_putchar(char c)
{
write(1, &c, 1);
}

6
test/temp/transform.c Normal file
View File

@@ -0,0 +1,6 @@
#include "test.h"
int transform(int a)
{
return (--a);
}