11 lines
90 B
C
11 lines
90 B
C
#include <stdio.h>
|
|
|
|
void ft_swap(int *a, int *b)
|
|
{
|
|
int f;
|
|
|
|
f = *a;
|
|
*a = *b;
|
|
*b = f;
|
|
}
|