/* inputint.c: read integers from text files. These routines are only
used for debugging and such, so perfect error checking isn't
necessary. */
#include "config.h"
/* Read an integer from the file F, reading past the subsequent end of
line. */
integer
inputint P1C(FILE *, f)
{
char buffer[MAX_INT_LENGTH]; /* Long enough for anything reasonable. */
return
fgets (buffer, sizeof (buffer), f)
? atoi (buffer)
: 0;
}
|