printf/libft/src/ft_swap.c

23 lines
985 B
C
Raw Normal View History

2023-04-15 06:55:33 +02:00
/* ************************************************************************** */
/* */
/* :::::::: */
2023-10-26 18:32:55 +02:00
/* ft_swap.c :+: :+: */
2023-04-15 06:55:33 +02:00
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2021/02/02 21:13:27 by djonker #+# #+# */
2023-10-26 18:32:55 +02:00
/* Updated: 2023/10/18 17:00:22 by houtworm ######## odam.nl */
2023-04-15 06:55:33 +02:00
/* */
/* ************************************************************************** */
#include "../libft.h"
void ft_swap(int *a, int *b)
{
int c;
c = *a;
*a = *b;
*b = c;
}