33b6c26253
<Read|Write>[Update]<Binary file>|<text file> eg: fopen("foo", FOPEN_WB) to open for writing binary. Usefull for vms, dos and who knows what else.
42 lines
942 B
C
42 lines
942 B
C
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/dg_c_generics.h>
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include <time.h>
|
|
#include <ctype.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifndef DONTDECLARE_MALLOC
|
|
extern PROTO(PTR,malloc,(unsigned));
|
|
extern PROTO(PTR ,realloc, (PTR, unsigned));
|
|
#endif
|
|
extern PROTO(int, abort,(void));
|
|
extern PROTO(int, free,(PTR));
|
|
extern PROTO(void, bcopy,(char*,char*,int));
|
|
extern PROTO(void, exit,(int));
|
|
extern int strtol();
|
|
extern PROTO(void, bzero,(char *, int));
|
|
#define NO_STDARG 1
|
|
|
|
|
|
|
|
/* Macros for the 'type' part of an fopen, freopen or fdopen.
|
|
<Read|Write>[Update]<Binary file><text file>
|
|
*/
|
|
#define FOPEN_RB "r"
|
|
#define FOPEN_WB "w"
|
|
#define FOPEN_AB "a"
|
|
#define FOPEN_RUB "r+"
|
|
#define FOPEN_WUB "w+"
|
|
#define FOPEN_AUB "a+"
|
|
#define FOPEN_RT "r"
|
|
#define FOPEN_WT "w"
|
|
#define FOPEN_AT "a"
|
|
#define FOPEN_RUT "r+"
|
|
#define FOPEN_WUT "w+"
|
|
#define FOPEN_AUT "a+"
|