#ifndef _SOURCE_SORT_HPP #define _SOURCE_SORT_HPP #include int SortIntArrayCompare(const void * a,const void *b); void SortIntArray(int * Array,unsigned int ArraySize); #include "sort.cpp" #endif