diff options
Diffstat (limited to 'src/ft_check_not_found.c')
-rw-r--r-- | src/ft_check_not_found.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ft_check_not_found.c b/src/ft_check_not_found.c new file mode 100644 index 0000000..9233846 --- /dev/null +++ b/src/ft_check_not_found.c @@ -0,0 +1,15 @@ +#include <cub3d.h> +#include <stdint.h> +#include <fcntl.h> +#include <unistd.h> + +int8_t + ft_check_not_found(const char *path) +{ + int fd; + + if ((fd = open(path, O_RDONLY)) < 0) + return (-1); + close(fd); + return (0); +} |