Alexander Nicolaysen Sørnes alex@thehandofagony.com writes:
do
{
*s = fgetc(in);
} while(*s == ' ' || *s == '\t');
if(*s == EOF) fprintf(stderr,"%s: ERROR - invalid continuation.\n", getAppName());
You can't do that, EOF is an int not a char.