stdio.h
Macro SEEK_CUR, SEEK_END, SEEK_SET ANSI C
#define SEEK_CUR #define SEEK_END #define SEEK_SET
Unas expresiones enteras y constantes con valores únicos, apropiados para el uso como el tercer argumento de la función fseek.
Ejemplo:
#define SEEK_CUR 0 #define SEEK_END 1 #define SEEK_SET 2 |
DJGPP |
#define SEEK_CUR 1 #define SEEK_END 2 #define SEEK_SET 0 |
Borland |
#define SEEK_CUR (1) #define SEEK_END (2) #define SEEK_SET (0) |
Dev-C++ |