#include #include #include #include int8_t ft_check_not_found(const char *path) { int fd; if ((fd = open(path, O_RDONLY)) < 0) return (-1); close(fd); return (0); }