annotate Meerwald/sort.h @ 9:e496e3b113b6
disable DEBUG, but leave -Wall on
author |
Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
date |
Tue, 22 Apr 2008 13:48:14 +0200 |
parents |
be303a3f5ea8 |
children |
|
rev |
line source |
0
|
1 #ifndef SORT_H
|
|
2 #define SORT_H
|
|
3
|
|
4 #include "wm.h"
|
|
5 #include "pgm.h"
|
|
6
|
|
7 void sort_grays(gray a[], int n);
|
|
8 void select_largest_grays(gray array[], int n, int m, gray largest[]);
|
|
9
|
|
10 void sort_coeffs(double a[], int n);
|
|
11 void select_largest_coeffs(double array[], int n, int m, double largest[]);
|
|
12
|
|
13 #endif
|