Name
FClose -- close a file handle (V6.0)
Synopsis
int ok = FClose(APTR handle);
Function
This function must close the specified file handle, finishing all pending writes. FClose() must return True on success, False otherwise.

This function must be implemented in a thread-safe manner.

Inputs
handle
file handle returned by FOpen()
Results
ok
True to indicate success, False on failure

Show TOC