Searched defs:PRNG (Results 1 – 1 of 1) sorted by relevance
78 struct PRNG { struct79 unsigned long next;81 void srand(unsigned int seed) { next = seed; } in srand()83 int rand() { in rand()