8seg/common/xorshift.h
2023-10-02 01:23:31 +02:00

8 lines
130 B
C

#ifndef __XORSHIFT_H__
#define __XORSHIFT_H__
#include <stdint.h>
uint32_t xorshift32(uint32_t x);
#endif /* __XORSHIFT_H__ */