8 lines
130 B
C
8 lines
130 B
C
#ifndef __XORSHIFT_H__
|
|
#define __XORSHIFT_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t xorshift32(uint32_t x);
|
|
|
|
#endif /* __XORSHIFT_H__ */
|