Skip to content

Latest commit

 

History

History
42 lines (23 loc) · 664 Bytes

clearerr.part-impl.md

File metadata and controls

42 lines (23 loc) · 664 Bytes

clearerr

Synopsis

#include <stdio.h>

void clearerr(FILE *stream);

Status

Partially implemented

Conformance

IEEE Std 1003.1-2017

Description

The purpose is to clear indicators on a stream. The clearerr() function shall clear the end-of-file and error indicators for the stream to which stream points. The clearerr() function shall not change the setting of errno if stream is valid.

Return value

The clearerr() function shall not return a value.

Errors

No errors are defined.

Tests

Untested

Known bugs

None

See Also

  1. Standard library functions
  2. Table of Contents