/usr/share/z88dk/include/stdio.h is in z88dk-data 1.8.ds1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | #ifndef __STDIO_H__
#define __STDIO_H__
/* $Id: stdio.h,v 1.14 2007/10/18 10:12:40 stefano Exp $ */
#undef __STDIO_BINARY /* By default don't consider binary files */
#ifdef FDSTDIO
#include <z88stdio.h>
#else
#ifdef __SPECTRUM__
#include <spectrum.h>
#endif
#ifdef __ZX81__
#include <zx81.h>
#endif
#ifdef __CPM__
#include <cpm.h>
#endif
#ifdef ZXVGS
#include <zxvgs.h>
#endif
/*
* This is the new stdio library - everything is pretty much
* generic - just a few machine specific routines are needed
* and these are clearly marked
*/
#include <sys/types.h>
#include <fcntl.h>
#ifndef NULL
#define NULL ((void *)0)
#endif
#ifndef EOF
#define EOF (-1)
#endif
#define FILENAME_MAX 128
/* If you change this then you also have to pad out {zcc}/lib/stdio_fp.asm,
* recompile the libs and fiddle with app_crt0.asm - best leave it!
*/
#define FOPEN_MAX 10
/* Indicate to the frontend that we want the new streams stuff */
#pragma output ANSIstdio
struct filestr {
union f0xx {
int fd;
u8_t *ptr;
} desc;
u8_t flags;
u8_t ungetc;
};
/* For asm routines kinda handy to have a nice DEFVARS of the structure*/
#ifdef STDIO_ASM
#asm
DEFVARS 0 {
fp_desc ds.w 1
fp_flags ds.b 1
fp_ungetc ds.b 1
}
#endasm
#endif
#define FILE struct filestr
/* System is used for initial std* streams
* Network streams do not set IOREAD/IOWRITE, it is assumed that
* they are read/write always
*/
#define _IOUSE 1
#define _IOREAD 2
#define _IOWRITE 4
#define _IOEOF 8
#define _IOSYSTEM 16
#define _IONETWORK 32
#define _IOTEXT 64
#define _IOSTRING 128
extern struct filestr _sgoioblk[FOPEN_MAX];
#define stdin &_sgoioblk[0]
#define stdout &_sgoioblk[1]
#define stderr &_sgoioblk[2]
/* Macros for things we don't use */
#define clearerr(f)
#ifdef NET_STDIO
extern int __LIB__ fflush(FILE *);
#else
#define fflush(f)
#endif
/* Our new and improved functions!! */
extern FILE __LIB__ *fopen(far char *name, unsigned char *mode);
extern FILE __LIB__ *fopen_z88(far char *name, unsigned char *mode, unsigned char *explicit, size_t len);
extern FILE __LIB__ *freopen(far char *name, unsigned char *mode, FILE *fp);
extern FILE __LIB__ *freopen_z88(far char *n, unsigned char *m, FILE *fp, unsigned char *explicit, size_t len);
extern FILE __LIB__ *fdopen(int fildes, unsigned char *mode);
extern int __LIB__ fclose(FILE *fp);
extern void __LIB__ closeall();
extern char __LIB__ *fgets(unsigned char *s, int, FILE *fp);
extern int __LIB__ fputs(unsigned char *s, FILE *fp);
extern int __LIB__ fputc(int c, FILE *fp);
#define getc(f) fgetc(f)
extern int __LIB__ fgetc(FILE *fp);
extern int __LIB__ ungetc(int c, FILE *);
extern int __LIB__ feof(FILE *fp);
extern int __LIB__ puts(unsigned char *);
/* Routines for file positioning */
extern fpos_t __LIB__ ftell(FILE *fp);
extern int __LIB__ fgetpos(FILE *fp, fpos_t *pos);
#define fsetpos(fp,pos) fseek(fp,pos,SEEK_SET)
#define rewind(fp) fseek(fp,0L,SEEK_SET)
extern int __LIB__ fseek(FILE *fp, fpos_t offset, int whence);
/* Block read/writing */
extern int __LIB__ fread(void *ptr, int size, int num, FILE *);
extern int __LIB__ fwrite(void *ptr, int size, int num, FILE *);
/* You shouldn't use gets. z88 gets() is limited to 255 characters */
extern int __LIB__ gets(char *s);
/* Some standard macros */
#define putc(bp,fp) fputc(bp,fp)
#define putchar(bp) fputc(bp,stdout)
#define getchar() fgetc(stdin)
/*
* Yes! vfprintf is deliberately without a __LIB__ cos
* a jp to the real routine is in the startup code
*/
extern int __LIB__ printf(char *,...);
extern int __LIB__ fprintf(FILE *,char *,...);
extern int __LIB__ sprintf(char *,char *,...);
extern int vfprintf(FILE *,unsigned char *fmt,void *ap);
extern int __LIB__ vsprintf(char *str,unsigned char *fmt,void *ap);
#define vprintf(ctl,arg) vfprintf(stdout,ctl,arg)
/* real printf cores */
extern int __LIB__ vfprintf_mini(FILE *, unsigned char *, void *);
extern int __LIB__ vfprintf_comp(FILE *, unsigned char *, void *);
extern int __LIB__ vfprintf_fp(FILE *, unsigned char *, void *);
extern __LIB__ printn(int number, int radix,FILE *file);
extern int __LIB__ ltoa_any(long in,unsigned char *str, int sz, unsigned int radix, int signflag);
/*
* Scanf family
*/
extern int __LIB__ scanf(unsigned char *fmt,...);
extern int __LIB__ fscanf(FILE *,unsigned char *fmt,...);
extern int __LIB__ sscanf(char *,unsigned char *fmt,...);
extern int __LIB__ vfscanf(FILE *, unsigned char *fmt, void *ap);
extern int __LIB__ vsscanf(char *str, unsigned char *fmt, void *ap);
#define vscanf(ctl,arg) vfscanf(stdout,ctl,arg)
/*
* Used in variable argument lists
*/
#ifndef DEF_GETARG
#define DEF_GETARG
extern int __LIB__ getarg(void);
#endif
/*
* Support routines
*
* fchkstd checks for std* varieties
*
* f(put|get)c_cons write/read byte to console (to avoid having
* file open for them) used internally, but you could use them
* (but may change etc etc)
*/
extern int __LIB__ fchkstd(FILE *);
/* All functions below here are machine specific */
extern int __LIB__ fgetc_cons();
extern int __LIB__ fputc_cons(char c);
extern int __LIB__ fgets_cons(char *s, int n);
/* Abandon file - can be the generic version */
extern void __LIB__ fabandon(FILE *);
/* Get file position for file handle fd */
extern long __LIB__ fdtell(int fd);
extern int __LIB__ fdgetpos(int fd, fpos_t *posn);
/* Rename a file */
extern int __LIB__ rename(char *s, char *d);
/* Remove a file */
extern int __LIB__ remove(char *name);
/*
* Non-standard, but useful for games:
*
* getk() returns key currently pressed or 0 if none
* getkey() waits for a key to be pressed before returning
* puts_cons() is like puts() but o/p directly to screen
* printk() is a printf directly to console (bypasses streams)
* this is not available for the ANSI terminal libraries
*/
extern int __LIB__ getk();
#define getkey() fgetc_cons()
extern void __LIB__ puts_cons();
extern void __LIB__ printk(char *fmt,...);
/*
* Networking stdio routines
*/
#ifdef NET_STDIO
#include <net/stdio.h>
#endif
#endif /* !FDSTDIO */
#endif /* _STDIO_H */
|