blob: c9642715d937908b7ac1e609e2ab44b0a9ce50ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _DOSDTA_
#define _DOSDTA_
#include "stdmacs.h"
typedef struct {
char fcb[21];
char attr;
short time;
short date;
long size;
char name[13];
} DTA;
extern DTA *findfirst ANSI((char *, DTA *));
extern DTA *findnext ANSI((DTA *));
#endif
|