1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-30 08:57:49 +00:00
cc65/libsrc/cbm/dir.inc
uz a83bf3dc04 Implement special read function that sets errno in case of a short read. Drop
_dirskip in favour of the new function.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5672 b7a2c559-68d2-44c3-8de9-860c34a00d81
2012-06-03 13:59:31 +00:00

31 lines
629 B
PHP

;
; Internal include file, do not use directly.
; Written by Ullrich von Bassewitz. Based on C code by Groepaz.
;
;------------------------------------------------------------------------------
; Data structures
.struct DIR
fd .word
offs .word
name .byte 16+1
.endstruct
;------------------------------------------------------------------------------
; C callable functions
.global _opendir
.global _closedir
.global _readdir
; .global _telldir
; .global _rewinddir
.global __dirread
.global __dirread1
.global __dirskip