Initial commit.

This commit is contained in:
Ian Gulliver
2016-03-03 23:02:19 -08:00
parent ae39b730da
commit 213cad5417
6 changed files with 172 additions and 0 deletions

7
rand.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
#include <stddef.h>
void rand_init(void);
void rand_cleanup(void);
void rand_fill(void *, size_t);