magyarsort/test.cpp
2021-03-11 21:38:06 +01:00

16 lines
344 B
C++

/* LICENCE: CC3 - look it up, you need to mention me but that is all */
#include <cstdint>
#include <cstdio>
#include "magyarsort.h"
int main() {
uint32_t smallArr[16] = { 0xFF, 0xFFFFFFFF, 0xAA000000, 10, 20, 200, 1234513, 1, 0, 65535, 1024*1024, 1026*16, 7, 8, 1, 0};
MagyarSort::sort(smallArr, 16);
// TODO: check, etc.
return 0;
}