j
k
j a
j l
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());
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.
Back to the thread
Back to the list