#ifndef _INSERTION_SORT_H_ #define _INSERTION_SORT_H_ /** * insertion-sort.h * Declarations of insertion sort. */ void insertion_sort (char *strings[], int len); #endif // _INSERTION_SORT_H_