mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
22 lines
256 B
C
22 lines
256 B
C
|
#ifndef XOSHIRO_H
|
||
|
#define XOSHIRO_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void xoshiro_seed(uint32_t s);
|
||
|
|
||
|
uint32_t xoshiro_next(void);
|
||
|
|
||
|
float xoshiro_rand(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|
||
|
|
||
|
#endif /* XOSHIRO_H */
|