This commit is contained in:
2026-01-14 22:03:11 +01:00
commit 70bb065fbe
16 changed files with 935 additions and 0 deletions

12
include/common/numgen.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef NUMGEN_H
#define NUMGEN_H
#include <stdlib.h>
#include <time.h>
#include <stdint.h>
#include <string.h>
unsigned char random_byte(void);
uint32_t random_four_byte(void);
#endif