summaryrefslogtreecommitdiff
path: root/graphs/piscine/pointer_swap/pointer_swap.c
blob: 32ceb847ca76c62b6c1c05abd422647d7736609f (plain)
1
2
3
4
5
6
void pointer_swap(int **a, int **b)
{
    int *tmp = *a;
    *a = *b;
    *b = tmp;
}