office-gobmx/dmake/msdos/dirent.h
Jens-Heiner Rechtien b501a54cf9 initial import
2000-09-22 14:33:37 +00:00

32 lines
876 B
C

/* DIRLIB.H by M. J. Weinstein Released to public domain 1-Jan-89 */
#ifndef _DIRLIB_h_
#define _DIRLIB_h_
#include <stdio.h>
#include "stdmacs.h"
#include "dosdta.h"
#define MAXNAMLEN 15
struct dirent {
long d_ino;
unsigned short d_reclen;
unsigned short d_namlen;
char d_name[MAXNAMLEN+1];
};
typedef struct {
DTA dd_dta; /* disk transfer area for this dir. */
short dd_stat; /* status return from last lookup */
char dd_name[1]; /* full name of file -- struct is extended */
} DIR;
extern DIR *opendir ANSI((char *));
extern struct dirent *readdir ANSI((DIR *));
extern long telldir ANSI((DIR *));
extern void seekdir ANSI((DIR *, long));
extern void closedir ANSI((DIR *));
#define rewinddir(dirp) seekdir(dirp,0L)
#endif