Files
scully/src/libscully.c

10 lines
126 B
C
Raw Normal View History

2013-06-01 18:10:13 +02:00
#include <time.h>
#include <stdlib.h>
bool random_if(int p) {
srand(time(NULL));
int r = rand() % 100;
return (r < p);
}