mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
115 lines
3.0 KiB
C
115 lines
3.0 KiB
C
#ifndef _HTC_STDIO_H
|
||
#define _HTC_STDIO_H
|
||
|
||
/*
|
||
* STDIO.H Modified version from Tesseract vol 91
|
||
*/
|
||
#if z80
|
||
#define BUFSIZ 512
|
||
#define _NFILE 8
|
||
#else z80
|
||
#define BUFSIZ 1024
|
||
#define _NFILE 20
|
||
#endif z80
|
||
|
||
#ifndef FILE
|
||
#define uchar unsigned char
|
||
|
||
extern struct _iobuf
|
||
{
|
||
char *_ptr;
|
||
int _cnt;
|
||
char *_base;
|
||
unsigned short _flag;
|
||
char _file;
|
||
} _iob[_NFILE];
|
||
|
||
#endif FILE
|
||
|
||
#ifndef SEEK_SET
|
||
#define SEEK_SET 0
|
||
#define SEEK_CUR 1
|
||
#define SEEK_END 2
|
||
#endif
|
||
|
||
#define _IOREAD 01
|
||
#define _IOWRT 02
|
||
#define _IORW 03
|
||
#define _IONBF 04
|
||
#define _IOMYBUF 010
|
||
#define _IOEOF 020
|
||
#define _IOERR 040
|
||
#define _IOSTRG 0100
|
||
#define _IOBINARY 0200
|
||
/* New flags */
|
||
#define _IODIRN 01000 /* Set if writing to a R/W file */
|
||
#define _IOAPPEND 02000 /* Set if in append mode */
|
||
#define _IOWROTE 04000 /* Write occurred since last seek */
|
||
|
||
#ifndef NULL
|
||
#define NULL ((void *)0)
|
||
#endif NULL
|
||
|
||
#define FILE struct _iobuf
|
||
#define EOF (-1)
|
||
|
||
#define stdin (&_iob[0])
|
||
#define stdout (&_iob[1])
|
||
#define stderr (&_iob[2])
|
||
#define getchar() getc(stdin)
|
||
#define putchar(x) putc(x,stdout)
|
||
|
||
/*
|
||
* getc() and putc() must be functions for CP/M to allow the special
|
||
* handling of '\r', '\n' and '\032'. The same for MSDOS except that
|
||
* it at least knows the length of a file.
|
||
*/
|
||
|
||
#if UNIX
|
||
#define getc(p) (--(p)->_cnt>=0?(unsigned)*(p)->_ptr++:_filbuf(p))
|
||
#define putc(x,p) (--(p)->_cnt>=0?((unsigned)(*(p)->_ptr++=x)):_flsbuf((unsigned)(x),p))
|
||
#else UNIX
|
||
#define getc(p) fgetc(p)
|
||
#define putc(x,p) fputc(x,p)
|
||
#endif UNIX
|
||
|
||
#define feof(p) (((p)->_flag&_IOEOF)!=0)
|
||
#define ferror(p) (((p)->_flag&_IOERR)!=0)
|
||
#define fileno(p) ((uchar)p->_file)
|
||
#define clrerr(p) p->_flag &= ~_IOERR
|
||
#define clreof(p) p->_flag &= ~_IOEOF
|
||
|
||
#define L_tmpnam 34 /* max length of temporary names */
|
||
#define L_TMPNAM (L_tmpnam) /* max length of temporary names */
|
||
|
||
extern int fclose(FILE *);
|
||
extern int fflush(FILE *);
|
||
extern int fgetc(FILE *);
|
||
extern int ungetc(int, FILE *);
|
||
extern int fputc(int, FILE *);
|
||
extern int getw(FILE *);
|
||
extern int putw(int, FILE *);
|
||
extern char *gets(char *);
|
||
extern int puts(char *);
|
||
extern int fputs(char *, FILE *);
|
||
extern int fread(void *, unsigned, unsigned, FILE *);
|
||
extern int fwrite(void *, unsigned, unsigned, FILE *);
|
||
extern int fseek(FILE *, long, int);
|
||
extern int rewind(FILE *);
|
||
extern int setbuf(FILE *, char *);
|
||
extern int printf(char *, ...);
|
||
extern int fprintf(FILE *, char *, ...);
|
||
extern int sprintf(char *, char *, ...);
|
||
extern int scanf(char *, ...);
|
||
extern int fscanf(FILE *, char *, ...);
|
||
extern int sscanf(char *, char *, ...);
|
||
extern int remove(char *);
|
||
extern FILE *fopen(char *, char *);
|
||
extern FILE *freopen(char *, char *, FILE *);
|
||
extern FILE *fdopen(int, char *);
|
||
extern long ftell(FILE *);
|
||
extern char *fgets(char *, int, FILE *);
|
||
extern char *_bufallo(void);
|
||
|
||
#endif
|
||
|