blob: 7987572239efcb4d24d27a5304f59aae13f30678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
// Miller Shuffle Algorithm proto types
// unsigned int MillerShuffleAlgo_a(unsigned int, unsigned int, unsigned int);
// unsigned int MillerShuffleAlgo_b(unsigned int, unsigned int, unsigned int);
unsigned int MillerShuffle(unsigned int, unsigned int, unsigned int);
#ifdef __cplusplus
}
#endif
|