home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Tools
/
Languages
/
Icon 8.1
/
msm-1
/
icont.sit
/
lfile.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-09-19
|
248 b
|
11 lines
|
[
TEXT/MPS
]
/*
* A linked list of files named by link declarations is maintained using
* lfile structures.
*/
struct lfile {
char *lf_name; /* name of the file */
struct lfile *lf_link; /* pointer to next file */
};
extern struct lfile *lfiles;