/* ************************************************************************** */ /* */ /* :::::::: */ /* ft_swap.c :+: :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2021/02/02 21:13:27 by djonker #+# #+# */ /* Updated: 2023/02/07 00:41:28 by houtworm ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" void ft_swap(int *a, int *b) { int c; c = *a; *a = *b; *b = c; }