/* * selection_lib.h * * library file containing implentation of selection sort * * This is the "public" API describing how * other programs should use this one. * */ void print_array(int array[], int size); void selection_sort(int array[], int array_length);