Here are the general statements that anybody can use:
typedef unsigned int uint;
typedef int (*SSortFunc) (const char *, const char *, uint count);
class SGenericArray;
void SGenericArray::sort(uint len, SSortFunc sort_func, int first = 0, int last = -1);
Here are the statements that is...