Files
cc65/libsrc/cbm/dir.inc
uz eab5f250ad New function _dirskip that allows to skip an amount of bytes from the
directory with error check.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5668 b7a2c559-68d2-44c3-8de9-860c34a00d81
2012-06-01 19:23:34 +00:00

28 lines
573 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 __dirskip