diff options
Diffstat (limited to 'src/lst/ft_lstsort.c')
| -rw-r--r-- | src/lst/ft_lstsort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lst/ft_lstsort.c b/src/lst/ft_lstsort.c index 883604f..e1c9913 100644 --- a/src/lst/ft_lstsort.c +++ b/src/lst/ft_lstsort.c @@ -6,13 +6,13 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/10 01:53:55 by cacharle #+# #+# */ -/* Updated: 2020/02/10 02:09:28 by cacharle ### ########.fr */ +/* Updated: 2020/02/16 02:18:05 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft_lst.h" -void ft_lstsort(t_ftlst **begin_list, int (*cmp)(void *, void*)) +void ft_lstsort(t_ftlst **begin_list, t_ftcompar_func cmp) { t_ftlst *fast; t_ftlst *slow; |
