Mercurial > hg > wm
view Meerwald/sort.h @ 16:4987db85cfae
fix another scanf() warning
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Mon, 30 Jun 2008 21:03:40 +0200 |
parents | be303a3f5ea8 |
children |
line wrap: on
line source
#ifndef SORT_H #define SORT_H #include "wm.h" #include "pgm.h" void sort_grays(gray a[], int n); void select_largest_grays(gray array[], int n, int m, gray largest[]); void sort_coeffs(double a[], int n); void select_largest_coeffs(double array[], int n, int m, double largest[]); #endif