previous next Up Title Contents Index

17.1.3 Tiedoston lopun testaaminen, feof

Tiedoston loppumista voidaan testata funktiolla feof. Usein tiedostoa luetaan silmukalla
	  while ( !feof(f) ) {
	    if ( f_lue_jono(f,jono,sizeof(jono)) ...
	    ...
	  }


previous next Up Title Contents Index