Add actual random number generation code.

This commit is contained in:
counterpoint
2015-08-26 15:43:43 +01:00
parent 1f6b544f33
commit 162db13523
2 changed files with 119 additions and 0 deletions

22
server/include/random.h Normal file
View File

@ -0,0 +1,22 @@
/*
* File: random.h
* Author: mbrampton
*
* Created on 26 August 2015, 15:34
*/
#ifndef RANDOM_H
#define RANDOM_H
#ifdef __cplusplus
extern "C" {
#endif
unsigned int random_jkiss(void);
#ifdef __cplusplus
}
#endif
#endif /* RANDOM_H */