/* Init Module */ #include "lotto.h" #include #include #include void init(void) { /* seed the randomizer */ seedRandomizer(); /* display startup text */ puts("L O T T O P I C K E R\n"); puts("Press Enter to pick this week's numbers:"); getchar(); } void seedRandomizer(void) { srand((unsigned)time(NULL)); }