stdio.h
Macro _IOFBF, _IOLBF, _IONBF ANSI C
#define _IOFBF #define _IOLBF #define _IONBF
Son expresiones enteras constantes con valores únicos, apropiados para el uso como el tercer argumento para la función setvbuf.
Ejemplo:
#define _IOFBF 00001
#define _IOLBF 00004 #define _IONBF 00002 |
DJGPP |
#define _IOFBF 0
#define _IOLBF 1 #define _IONBF 2 |
BORLAND |
#define _IOFBF 0
#define _IOLBF 1 #define _IONBF 2 |
Dev-C++ |