mirror of
https://github.com/jgamblin/Mirai-Source-Code
synced 2025-05-15 22:04:11 +00:00
11 lines
171 B
C
Executable File
11 lines
171 B
C
Executable File
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#define PHI 0x9e3779b9
|
|
|
|
void rand_init(void);
|
|
uint32_t rand_next(void);
|
|
void rand_str(char *, int);
|
|
void rand_alphastr(uint8_t *, int);
|