makefile class finish

This commit is contained in:
hugodu69
2019-11-16 14:35:48 +01:00
parent 2a86ed7724
commit 6806ab114b
10 changed files with 382 additions and 369 deletions

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

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