123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #include <wchar.h>
- #include "wcio.h"
- #include "internal/arch.h"
- #define FLOATING_POINT 1
- #define PRINTF_WIDE_CHAR 1
- struct __sbuf {
- unsigned char *_base;
- int _size;
- };
- typedef struct __sFILE {
- unsigned char *_p;
- int _r;
- int _w;
- short _flags;
- short _file;
- struct __sbuf _bf;
-
- int (*_read)(void *, char *, int);
-
- struct __sbuf _ext;
- } FILE;
- #define __SLBF 0x0001
- #define __SNBF 0x0002
- #define __SRD 0x0004
- #define __SWR 0x0008
- #define __SRW 0x0010
- #define __SEOF 0x0020
- #define __SERR 0x0040
- #define __SMBF 0x0080
- #define __SSTR 0x0200
- #define __SALC 0x4000
- #include "fileext.h"
- int __vfprintf(FILE *, const char *, __va_list);
- int __vfwprintf(FILE *, const wchar_t *, __va_list);
- #define __sferror(p) (((p)->_flags & __SERR) != 0)
- #define cantwrite(fp) 0
|