Searched defs:PRNG (Results 1 – 1 of 1) sorted by relevance
48 struct PRNG { struct49 unsigned long next;51 void srand(unsigned int seed) { next = seed; } in srand()53 int rand() { in rand()