23 lines
985 B
C
23 lines
985 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* :::::::: */
|
||
|
/* ft_swap.c :+: :+: :+: */
|
||
|
/* +:+ */
|
||
|
/* By: djonker <marvin@codam.nl> +#+ */
|
||
|
/* +#+ */
|
||
|
/* 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;
|
||
|
}
|