]> git.somenet.org - pub/astra/parallel.git/blob - prefix/prefix.h
fix merge/prefix.odt
[pub/astra/parallel.git] / prefix / prefix.h
1 /*
2 * Loader that inits the startarray + size, runs the linked algorithm and later prints the array output.
3 */
4
5 #ifndef _prefix_h_
6 #define _prefix_h_
7
8 typedef unsigned long numtype;
9 void array_contents(numtype array[], unsigned long size);
10 void algorithm (numtype in[], unsigned long size, unsigned int ops[]);
11
12 #endif