Last change
on this file was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
370 bytes
|
Line | |
---|
1 | /* |
---|
2 | * sort.h - Quick sort module API definitions |
---|
3 | * |
---|
4 | * Created on: Aug 11, 2008 |
---|
5 | * Author: Stefan Bucur <stefanb@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_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.