contents   index   previous   next



Clib.putc()

syntax:

Clib.putc(chr, filePointer)

where:

chr - character to write to file.

 

filePointer - pointer to file to use.

 

return:

number - character written on success, else EOF on write error.

 

description:

This method writes the character chr, converted to a byte, to an output file stream. This method is identical to Clib.fputc(). It returns chr on success and EOF on a write error.

 

see:

Clib.fputc()

 

 


Clib.remove()