2 * sort.h - Quick sort module API definitions
4 * Created on: Aug 11, 2008
5 * Author: Stefan Bucur <stefanb@zytor.com>
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
16 extern void quick_sort(int *nums
, int count
);