_getmaxstdio
스트림 I/O 수준에서 허용되는 동시에 열리는 파일 수를 반환합니다.
구문
int _getmaxstdio( void );
반환 값
현재 stdio
수준에서 허용되는 동시에 열리는 파일 수를 표현하는 숫자를 반환합니다.
설명
수준에서 허용되는 stdio
동시에 열려 있는 파일 수를 구성하는 데 사용합니다_setmaxstdio
.
요구 사항
루틴에서 반환된 값 | 필수 헤더 |
---|---|
_getmaxstdio |
<stdio.h> |
호환성에 대한 자세한 내용은 호환성을 참조하세요.
예시
// crt_setmaxstdio.c
// The program retrieves the maximum number
// of open files and prints the results
// to the console.
#include <stdio.h>
int main()
{
printf( "%d\n", _getmaxstdio());
_setmaxstdio(2048);
printf( "%d\n", _getmaxstdio());
}
512
2048