clearerr_s
Stream에 대 한 오류 표시를 다시 설정합니다.이것은 버전입니다 clearerr 에 설명 된 대로 보안 향상 기능을 CRT의 보안 기능.
errno_t clearerr_s(
FILE *stream
);
매개 변수
- stream
포인터를 FILE 구조
반환 값
성공 하는 경우에 0입니다. EINVAL경우 stream NULL입니다.
설명
clearerr_s 함수가 다시 설정 오류 표시기 및 파일 끝 표시기에 대 한 stream.오류 표시가 자동으로 지워집니다. 지정 된 스트림에 대 한 오류 표시기가 설정 되 면 해당 stream에 대 한 작업을 계속까지 오류 값을 반환 합니다 clearerr_s, clearerr, fseek, fsetpos, 또는 rewind 라고 합니다.
경우 stream 가 NULL 인지의 설명에 따라 잘못 된 매개 변수 처리기가 호출 매개 변수 유효성 검사.실행을 계속 수 있으면이 함수는 설정 errno 에 EINVAL 를 반환 하 고 EINVAL.
요구 사항
루틴 |
필수 헤더 |
---|---|
clearerr_s |
<stdio.h> |
추가 호환성 정보를 참조 하십시오. 호환성 소개에서 합니다.
예제
// crt_clearerr_s.c
// This program creates an error
// on the standard input stream, then clears
// it so that future reads won't fail.
#include <stdio.h>
int main( void )
{
int c;
errno_t err;
// Create an error by writing to standard input.
putc( 'c', stdin );
if( ferror( stdin ) )
{
perror( "Write error" );
err = clearerr_s( stdin );
if (err != 0)
{
abort();
}
}
// See if read causes an error.
printf( "Will input cause an error? " );
c = getc( stdin );
if( ferror( stdin ) )
{
perror( "Read error" );
err = clearerr_s( stdin );
if (err != 0)
{
abort();
}
}
}
n
n 쓰기 오류: 잘못 된 파일 설명자 입력 하면 오류가 발생 합니다. n
해당 .NET Framework 항목
해당 사항 없음. 표준 C 함수를 호출할 수 있습니다 PInvoke. 자세한 내용은 플랫폼 호출 예제.