aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_check_ext.c
blob: f4a1e92be0d0bc3b7710eb0de729234a06eab218 (plain)
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);
}