23 lines
279 B
C
23 lines
279 B
C
/*
|
|
* File: random_jkiss.h
|
|
* Author: mbrampton
|
|
*
|
|
* Created on 26 August 2015, 15:34
|
|
*/
|
|
|
|
#ifndef RANDOM_JKISS_H
|
|
#define RANDOM_JKISS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern unsigned int random_jkiss(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* RANDOM_H */
|
|
|