mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 08:05:51 +00:00
55463bbf91
git-svn-id: svn://svn.cc65.org/cc65/trunk@5674 b7a2c559-68d2-44c3-8de9-860c34a00d81
56 lines
1.3 KiB
C
56 lines
1.3 KiB
C
/*
|
|
* Internal include file, do not use directly.
|
|
* Written by Ullrich von Bassewitz. Based on code by Groepaz.
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DIR_H
|
|
#define _DIR_H
|
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
/* Data */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
struct DIR {
|
|
int fd; /* File descriptor for directory */
|
|
unsigned off; /* Current byte offset in directory */
|
|
char name[16+1]; /* Name passed to opendir */
|
|
};
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
/* Code */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
unsigned char __fastcall__ _dirread (DIR* dir, void* buf, unsigned char count);
|
|
/* Read characters from the directory into the supplied buffer. Makes sure,
|
|
* errno is set in case of a short read. Return true if the read was
|
|
* successful and false otherwise.
|
|
*/
|
|
|
|
unsigned char __fastcall__ _dirread1 (DIR* dir, void* buf);
|
|
/* Read one byte from the directory into the supplied buffer. Makes sure,
|
|
* errno is set in case of a short read. Return true if the read was
|
|
* successful and false otherwise.
|
|
*/
|
|
|
|
|
|
|
|
/* End of dir.h */
|
|
#endif
|
|
|
|
|
|
|