/*NoNumb general error handler for no numbers on input line */ #include "cddefines.h" #include "nonumb.h" void NoNumb(char *chCard) { # ifdef DEBUG_FUN fputs( "<+>NoNumb()\n", debug_fp ); # endif /* general catch-all for no number when there should have been */ fprintf( ioQQQ, " %80.80s\n", chCard ); fprintf( ioQQQ, " There should have been a number on this line. Sorry.\n" ); puts( "[Stop in nonumb]" ); exit(1); }