#ifndef SWAP_H #define SWAP_H void swap(int n1, int n2); void swap_p(int *n1, int *n2); void swap_ref(int &n1, int &n2); #endif