home *** CD-ROM | disk | FTP | other *** search
- /*********
- *
- * FILES.C
- *
- * by Ralph Davis
- *
- * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
- *
- * Syntax: FILES()
- * Return: <expN> indicating number of files on FILES= line in CONFIG.SYS
- *********/
-
- #include "trlib.h"
-
- TRTYPE files()
- {
- char *confparm = "FILES";
- _retnd((double) (_tr_doscnf(confparm)));
- }
-
-