contents   index   previous   next



Clib.fputs()

syntax:

Clib.fputs(str, filePointer)

where:

str - string to write to file.

 

filePointer - pointer to file to use.

 

return:

number - non-negative number on success, else EOF.

 

description:

This method writes the value of str to the file indicated by filePointer. Returns EOF if write error, else returns a non-negative value.

 

see:

Clib.fputc()

 

 


Clib.fread()