#include void test_func(); bool isPrimeNum(int num); template void swap(T &a, T &b) { T temp = a; a = b; b = temp; }