Completed _scanf.c, added vsscanf.c, rewrote sscanf.c.

Added an assembler include _file.inc and changed asm code that uses struct
FILE to be independent of its size.
Fixed return codes in several files to use EOF instead of -1.


git-svn-id: svn://svn.cc65.org/cc65/trunk@1205 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-03-24 13:26:18 +00:00
parent d4cb713197
commit 6e37905b18
15 changed files with 295 additions and 99 deletions

View File

@@ -6,23 +6,26 @@
.export __filetab, _stdin, _stdout, _stderr
.include "_file.inc"
.data
__filetab:
in: .byte 0, 1 ; stdin
out: .byte 1, 1 ; stdout
err: .byte 2, 1 ; stderr
.byte 0, 0 ; free slot
.byte 0, 0 ; free slot
.byte 0, 0 ; free slot
.byte 0, 0 ; free slot
.byte 0, 0 ; free slot
.byte 0, _FOPEN ; stdin
.byte 1, _FOPEN ; stdout
.byte 2, _FOPEN ; stderr
.repeat FOPEN_MAX - 3
.byte 0, _FCLOSED ; free slot
.endrepeat
; Standard file descriptors
_stdin:
.word in
.word __filetab + (0 * _FILE_size)
_stdout:
.word out
.word __filetab + (1 * _FILE_size)
_stderr:
.word err
.word __filetab + (2 * _FILE_size)