Home | History | Annotate | Download | only in include
      1 /*
      2  * sort.h - Quick sort module API definitions
      3  *
      4  *  Created on: Aug 11, 2008
      5  *      Author: Stefan Bucur <stefanb (at) zytor.com>
      6  */
      7 
      8 #ifndef SORT_H_
      9 #define SORT_H_
     10 
     11 /**
     12  * quick_sort - In place sort of an array of numbers.
     13  * @nums: Pointer to the array
     14  * @count: The number count in the array
     15  */
     16 extern void quick_sort(int *nums, int count);
     17 
     18 #endif /* SORT_H_ */
     19