#ifndef _SIMPLE_BUCKET_SORT_H_ #define _SIMPLE_BUCKET_SORT_H_ /** * simple-bucket-sort.h * Declarations for a simple bucket sort. */ /** * Sort strings using a simplified bucket sort. */ void simple_bucket_sort (char *strings[], int len); #endif // _SIMPLE_BUCKET_SORT_H_