aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/heapsort/heapsort.h
blob: 247d677353650579bdf9400040ab6efce94dde6c (plain)
1
2
3
4
5
6
7
#include <stdint.h>
#include <stdbool.h>

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);