aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/median/median.h
blob: 7f9791cc84417691d320db8d2a7901bd64f8e816 (plain)
1
2
3
4
5
6
7
8
9
10
11
// See LICENSE for license details.

//**************************************************************************
// Median filters
//--------------------------------------------------------------------------

// Simple C version
void median( int n, int input[], int results[] );

// Simple assembly version
void median_asm( int n, int input[], int results[] );