1 2 3 4 5 6 7 8
#ifndef __XORSHIFT_H__ #define __XORSHIFT_H__ #include <stdint.h> uint32_t xorshift32(uint32_t x); #endif /* __XORSHIFT_H__ */