Unify struct names and tags
This commit is contained in:
@@ -7,8 +7,8 @@
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
|
||||
typedef struct split_mix_64_state SplitMix64State;
|
||||
struct split_mix_64_state {
|
||||
typedef struct SplitMix64State SplitMix64State;
|
||||
struct SplitMix64State {
|
||||
u64 seed;
|
||||
};
|
||||
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
BEGIN_C_LINKAGE
|
||||
#endif // !WAPP_PLATFORM_CPP
|
||||
|
||||
typedef struct xor_256_state XOR256State;
|
||||
struct xor_256_state {
|
||||
typedef struct XOR256State XOR256State;
|
||||
struct XOR256State {
|
||||
u64 x;
|
||||
u64 y;
|
||||
u64 z;
|
||||
|
||||
Reference in New Issue
Block a user