00001 /* #include directives go here */ 00002 /* #define directives go here */ 00003 /* declarations of external variables go here */ 00004 /* prototypes */ 00005 void read cards(void); 00006 void analyze hand(void); 00007 void print result(void); 00008 /* functions start here */ 00009 int main(void) 00010 { 00011 for (;;) { 00012 read_cards(); 00013 analyze_hand(); 00014 print_result(); 00015 } 00016 }