Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git] / com32 / include / sort.h
blob0b495482fc5aae8999195f72f35987cdf28722ae
1 /*
2 * sort.h - Quick sort module API definitions
4 * Created on: Aug 11, 2008
5 * Author: Stefan Bucur <stefanb@zytor.com>
6 */
8 #ifndef SORT_H_
9 #define SORT_H_
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
16 extern void quick_sort(int *nums, int count);
18 #endif /* SORT_H_ */