Clib.fputc()
syntax: |
Clib.fputc(chr, filePointer) |
where: |
chr - character to write to file.
filePointer - pointer to file to use.
|
return: |
number - character written on success, else EOF.
|
description: |
If chr is a string, the first character of the string will be written to the file indicated by filePointer. If chr is a number, the character corresponding to its unicode value will be added.
|
see: |
|