#include int main(void) { int a; int b; a = 1; b = 2; printf("%d, %d\n", a, b); ft_swap(&a, &b); printf("%d, %d\n", a, b); return (0); }