/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_compar_int.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/19 08:24:43 by cacharle #+# #+# */ /* Updated: 2020/01/19 08:27:38 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_compar_int(const void *a, const void *b) { return (*(int*)a - *(int*)b); }