Skip to content

Instantly share code, notes, and snippets.

@Ryoga-exe
Created July 3, 2022 06:11
Show Gist options
  • Save Ryoga-exe/f6aa333fcfcc8d83149026550264f5fd to your computer and use it in GitHub Desktop.
Save Ryoga-exe/f6aa333fcfcc8d83149026550264f5fd to your computer and use it in GitHub Desktop.
inline unsigned int randxor() {
static unsigned int x=123456789,y=362436069,z=521288629,w=88675123;
unsigned int t;
t=(x^(x<<11));x=y;y=z;z=w; return( w=(w^(w>>19))^(t^(t>>8)) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment