ecriture des regles de makefile en cours

This commit is contained in:
Hugo LAMY
2019-11-08 16:23:21 +01:00
parent 80898b1d80
commit ad9dca840f
13 changed files with 530 additions and 1 deletions

6
putchar.c Normal file
View File

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