Unify struct names and tags

This commit is contained in:
2026-01-02 14:00:00 +00:00
parent 7be1b42107
commit f3ee1ee468
13 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -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;
};