1 2 3 4 5 6 7 8 9 10 11 12 13
#include <libft.h> #include <stdint.h> int8_t ft_check_ext(const char *filep, const char *ext) { const uint8_t extlen = ft_strlen(ext); if (ft_strncmp(filep + (ft_strlen(filep) - extlen), ext, extlen)) return (-1); else return (0); }