| iMatix home page | << | < | > | >> |
![]() Version 1.91 |
#include "sflfile.h" int file_close ( FILE *stream)
Closes an open file stream. Returns 0 if okay, -1 if there was an error. For now, equivalent to fclose, and supplied because it looks nice when you use file open() and file close() together.
{ ASSERT (stream); return (fclose (stream)); }
| << | < | > | >> |
![]() |