-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_gnome_sort.c
19 lines (17 loc) · 1.08 KB
/
ft_gnome_sort.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_gnome_sort.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lgasc <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/06 19:31:31 by lgasc #+# #+# */
/* Updated: 2024/01/30 16:31:07 by lgasc ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf/ft_printf.h"
void gnome_sort(int destination[const], const int source[const])
{
ft_printf("destination: %p, source: %p\n", (const void *const)destination,
(const void *const)source);
}