libexplain  1.4.D001
Functions
libexplain/libio.h File Reference
#include <libexplain/ac/stdio.h>

Go to the source code of this file.

Functions

int explain_libio_no_reads (FILE *fp)
int explain_libio_no_writes (FILE *fp)

Function Documentation

int explain_libio_no_reads ( FILE *  fp)

The explain_libio_no_reads function may be used to determine whether or not the given i/o stream may be read from.

Parameters:
fpThe i/o stream to check for readability.
Returns:
false (zero) if the stream may be read, true (non-zero) if the stream may not be read.

Definition at line 28 of file no_reads.c.

int explain_libio_no_writes ( FILE *  fp)

The explain_libio_no_writes function may be used to determine whether or not the given i/o stream may be read from.

Parameters:
fpThe i/o stream to check for readability.
Returns:
false (zero) if the stream may be written, true (non-zero) if the stream may not be written.

Definition at line 28 of file no_writes.c.