aboutsummaryrefslogtreecommitdiff
path: root/src/algo/ft_heapsort.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-10 04:24:29 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-10 04:24:29 +0100
commitfc457992114e71989e5cdeab452bc054a400a397 (patch)
tree4078af0485fe91f3bbf56984c2a3f171ff2f51de /src/algo/ft_heapsort.c
parent4800d3ca472058f0161970aa55c6debb453e5d00 (diff)
downloadlibft-fc457992114e71989e5cdeab452bc054a400a397.tar.gz
libft-fc457992114e71989e5cdeab452bc054a400a397.tar.bz2
libft-fc457992114e71989e5cdeab452bc054a400a397.zip
Fixing ft_strcmp, Added ft_strcasecmp, ft_strncasecmp
Diffstat (limited to 'src/algo/ft_heapsort.c')
-rw-r--r--src/algo/ft_heapsort.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/algo/ft_heapsort.c b/src/algo/ft_heapsort.c
index afd395d..d309624 100644
--- a/src/algo/ft_heapsort.c
+++ b/src/algo/ft_heapsort.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/10 02:59:22 by cacharle #+# #+# */
-/* Updated: 2020/02/10 03:57:50 by cacharle ### ########.fr */
+/* Updated: 2020/02/10 04:22:19 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -35,6 +35,10 @@
int ft_heapsort(void *base, size_t nel, size_t width,
int (*compar)(const void *, const void *))
{
+ (void)base;
+ (void)nel;
+ (void)width;
+ (void)compar;
/* size_t i; */
/* */
/* if (nel < 2) */