added basic ssl support to ircu
[ircu2.10.12-pk.git] / include / random.h
index 998106265cb19b6493114e60bb4dc5ac34044216..dbd1506fb4f00a0b0b0f6888a53e29257ecab864 100644 (file)
@@ -1,15 +1,19 @@
-/*
- * random.h
- *
- * $Id$
+/** @file random.h
+ * @brief 32-bit pseudo-random number generator interface.
+ * @version $Id$
  */
 #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 */