Files
scully/src/libscully.c

11 lines
147 B
C
Raw Normal View History

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