| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 2.11

 

file_close

#include "sflfile.h"
int
file_close (
    FILE *stream)

Synopsis

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.

Source Code - (sflfile.c)

{
    if (stream)
        return (fclose (stream));
    else
        return (0);
}

| << | < | > | >> iMatix Copyright © 1996-2000 iMatix Corporation