fixed ssl.c bug when ssl backend returns IO_BLOCKED but IO engine doesn't get informe...
[ircu2.10.12-pk.git] / include / random.h
1 /** @file random.h
2  * @brief 32-bit pseudo-random number generator interface.
3  * @version $Id: random.h 1213 2004-10-03 17:53:13Z entrope $
4  */
5 #ifndef INCLUDED_random_h
6 #define INCLUDED_random_h
7
8 struct Client;
9
10 /*
11  * Proto types
12  */
13
14 extern int random_seed_set(struct Client* from, const char* const* fields,
15                            int count);
16
17 extern unsigned int ircrandom(void);
18
19 #endif /* INCLUDED_random_h */