_getmaxstdio
Restituisce il numero dei file aperti contemporaneamente consentito a livello di I/O del flusso.
Sintassi
int _getmaxstdio( void );
Valore restituito
Restituisce un numero che rappresenta il numero dei file aperti contemporaneamente attualmente consentito a livello di stdio
.
Osservazioni:
Usare _setmaxstdio
per configurare il numero di file aperti simultaneamente consentiti a stdio
livello.
Requisiti
Ciclo | Intestazione obbligatoria |
---|---|
_getmaxstdio |
<stdio.h> |
Per altre informazioni sulla compatibilità, vedere Compatibility (Compatibilità).
Esempio
// 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