6 lines
88 B
C
6 lines
88 B
C
#include "libft.h"
|
|
|
|
int ft_diff(void *a, void *b)
|
|
{
|
|
return (*(int *)a - *(int *)b);
|
|
}
|