#ifndef __SORT0_H__ #define __SORT0_H__ /** * sort0.h * Specification of simple function for sorting strings. */ // +--------------------+---------------------------------------------- // | Exported Functions | // +--------------------+ int strings_sort (int n, char *strings[]); #endif // __SORT0_H__