19 lines
446 B
Plaintext
19 lines
446 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _DIRECTRY_CH
|
|
#define _DIRECTRY_CH
|
|
|
|
/* Positions for DIRECTORY() array */
|
|
#define F_NAME 1 /* File name */
|
|
#define F_SIZE 2 /* File size */
|
|
#define F_DATE 3 /* File date (write) */
|
|
#define F_TIME 4 /* File time (write) */
|
|
#define F_ATTR 5 /* File attribute */
|
|
|
|
/* Length of DIRECTORY() array */
|
|
#define F_LEN 5
|
|
|
|
#endif /* _DIRECTRY_CH */
|