summaryrefslogtreecommitdiff
path: root/com32/include/sort.h
blob: 0b495482fc5aae8999195f72f35987cdf28722ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * sort.h - Quick sort module API definitions
 *
 *  Created on: Aug 11, 2008
 *      Author: Stefan Bucur <stefanb@zytor.com>
 */

#ifndef SORT_H_
#define SORT_H_

/**
 * quick_sort - In place sort of an array of numbers.
 * @nums: Pointer to the array
 * @count: The number count in the array
 */
extern void quick_sort(int *nums, int count);

#endif /* SORT_H_ */