home *** CD-ROM | disk | FTP | other *** search
- /*++
- /* NAME
- /* dir 5
- /* SUMMARY
- /* directory access specification
- /* PROJECT
- /* dos/unix compatibility
- /* PACKAGE
- /* library functions
- /* DESCRIPTION
- /* .nf
-
- /* /* directory access functions */
-
- extern char *readdir();
-
- #ifdef unix
- #define opendir(id) open(id,0) /* a directory is just */
- #define closedir(id) close(id) /* another file */
- #endif
-
- #ifdef MSDOS
- extern int opendir(); /* a directory is a very */
- extern int closedir(); /* special file */
- #endif
- /* AUTHOR(S)
- /* Wietse Venema
- /* Eindhoven University of Technology
- /* Department of Mathematics and Computer Science
- /* Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
- /* CREATION DATE
- /* Mon Nov 17 19:38:19 GMT+1:00 1986
- /* LAST MODIFICATION
- /* Mon Apr 4 23:39:00 MET 1988
- /* VERSION/RELEASE
- /* 1.3
- /*--*/
-