/* LOTTO.H Header File * for use with the LOTTO program and its modules * written 4/21/04 by Dan Gookin */ /* PROTOTYPES */ /* This saves having to do this in each module */ void init(void); void select(void); void sort(void); void display(void); void seedRandomizer(void); /* DEFINES */ #define RANGE 50 #define BALLS 6 /* TYPEDEFS */ /* I'm not using any, but they would go here as well */ /* END */