_getmaxstdio
Vrátí počet současně otevřených souborů povolených na úrovni vstupně-výstupních operací datového proudu.
Syntaxe
int _getmaxstdio( void );
Vrácená hodnota
Vrátí číslo, které představuje počet současně otevřených souborů, které jsou aktuálně povoleny na stdio
úrovni.
Poznámky
Slouží _setmaxstdio
ke konfiguraci počtu současně otevřených souborů povolených na stdio
úrovni.
Požadavky
Rutina | Požadovaný hlavičkový soubor |
---|---|
_getmaxstdio |
<stdio.h> |
Další informace o kompatibilitě najdete v tématu Kompatibilita.
Příklad
// 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