Initial commit

This commit is contained in:
2026-01-09 15:33:06 +01:00
commit 76b8af3e6d
86 changed files with 10423 additions and 0 deletions

9
srcs/error.c Normal file
View File

@@ -0,0 +1,9 @@
#include "so_long.h"
#include "unistd.h"
int
ft_put_error(void)
{
write(2, "Error\n", 6);
return (1);
}