20 lines
399 B
C
20 lines
399 B
C
/** @file random.h
|
|
* @brief 32-bit pseudo-random number generator interface.
|
|
* @version $Id: random.h 1213 2004-10-03 17:53:13Z entrope $
|
|
*/
|
|
#ifndef INCLUDED_random_h
|
|
#define INCLUDED_random_h
|
|
|
|
struct Client;
|
|
|
|
/*
|
|
* Proto types
|
|
*/
|
|
|
|
extern int random_seed_set(struct Client* from, const char* const* fields,
|
|
int count);
|
|
|
|
extern unsigned int ircrandom(void);
|
|
|
|
#endif /* INCLUDED_random_h */
|