Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ ferror(3S) — HP-UX 5.20

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

open(2)

fopen(3S)

FERROR(3S)  —  HP-UX

NAME

ferror, feof, clearerr, fileno − stream status inquiries

SYNOPSIS

#include <stdio.h>

int ferror (stream)

FILE
∗stream;

int feof (stream)

FILE
∗stream;

void clearerr (stream)

FILE
∗stream;

int fileno (stream)

FILE
∗stream;

DESCRIPTION

Ferror returns non-zero when an I/O error has previously occurred reading from or writing to the named stream, otherwise zero. Unless cleared by clearerr, or unless the specific stdio routine so indicates, the error indication lasts until the stream is closed. 

Feof returns non-zero when EOF has previously been detected reading the named input stream, otherwise zero.

Clearerr resets the error indicator and EOF indicator to zero on the named stream.

Fileno returns the integer file descriptor associated with the named stream; see open(2).

NOTE

All these functions are implemented as macros; they cannot be declared or redeclared. 

SEE ALSO

open(2), fopen(3S). 

Hewlett-Packard Company  —  Version B.1,  May 11, 2021

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026