/** * swap.c */ #include "swap.h" void swap (char *v[], int i, int j) { char *tmp = v[i]; v[i] = v[j]; v[j] = tmp; } // swap