mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
c40b54ee6c
git-svn-id: svn://svn.cc65.org/cc65/trunk@5676 b7a2c559-68d2-44c3-8de9-860c34a00d81
31 lines
626 B
PHP
31 lines
626 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
|
|
off .word
|
|
name .byte 16+1
|
|
.endstruct
|
|
|
|
|
|
;------------------------------------------------------------------------------
|
|
; C callable functions
|
|
|
|
.global _opendir
|
|
.global _closedir
|
|
.global _readdir
|
|
.global _seekdir
|
|
.global _telldir
|
|
.global _rewinddir
|
|
.global __dirread
|
|
.global __dirread1
|
|
|
|
|