blob: d8fdd7e9c9b8c205e30a6a13167f2b1fb8846cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Assignment name : ft_swap
Expected files : ft_swap.c
Allowed functions:
--------------------------------------------------------------------------------
Write a function that swaps the contents of two integers the adresses of which
are passed as parameters.
Your function must be declared as follows:
void ft_swap(int *a, int *b);
|