Rename xorshift functions

This commit is contained in:
Abdelrahman Said
2025-03-22 00:30:20 +00:00
parent d661312cfa
commit 74428f1caf
2 changed files with 8 additions and 8 deletions

View File

@@ -15,10 +15,10 @@ struct xor_256_state {
u64 w;
};
XOR256State wapp_init_xor_256_state(void);
u64 wapp_xorshift_256_generate(XOR256State *state);
u64 wapp_xoshiro_256ss_generate(XOR256State *state);
u64 wapp_xoshiro_256p_generate(XOR256State *state);
XOR256State wapp_prng_xorshift_init_state(void);
u64 wapp_prng_xorshift_256(XOR256State *state);
u64 wapp_prng_xorshift_256ss(XOR256State *state);
u64 wapp_prng_xorshift_256p(XOR256State *state);
#ifdef __cplusplus
END_C_LINKAGE