From 0fb339fd9dc30b997c76563271e9b3e3f24db84d Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Sat, 19 Jan 2019 19:17:46 +0100 Subject: some more example --- test/monniaux/heapsort/heapsort.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/monniaux/heapsort/heapsort.h (limited to 'test/monniaux/heapsort/heapsort.h') diff --git a/test/monniaux/heapsort/heapsort.h b/test/monniaux/heapsort/heapsort.h new file mode 100644 index 00000000..247d6773 --- /dev/null +++ b/test/monniaux/heapsort/heapsort.h @@ -0,0 +1,7 @@ +#include +#include + +typedef uint64_t data; +void heapsort(data *A, int len); +void data_vec_random(data *a, unsigned len); +bool data_vec_is_sorted(const data *a, unsigned len); -- cgit