home *** CD-ROM | disk | FTP | other *** search
- /*
- // Copyright (C) 1991 Texas Instruments Incorporated.
- //
- // Permission is granted to any individual or institution to use, copy, modify,
- // and distribute this software, provided that this complete copyright and
- // permission notice is maintained, intact, in all copies and supporting
- // documentation.
- //
- // Texas Instruments Incorporated provides this software "as is" without
- // express or implied warranty.
- */
-
- #include <stdio.h>
- #include <ctype.h>
-
- #ifdef VMS
- #include <types.h>
- #include <stat.h>
- #else
- #ifdef os2
- #include <sys\types.h>
- #include <fcntl.h>
- #include <sys\stat.h>
- #else
- #include <sys/types.h>
- #include <fcntl.h>
- #include <sys/stat.h>
- #endif
- #endif
-
- #define MAXFILES 512
- #define TRUE 1
- #define FALSE 0
-
- typedef unsigned char boolean;
-
- struct filepointer {
- char *f_p;
- char *f_base;
- char *f_end;
- long f_len;
- long f_line;
- };
-
- char *malloc();
- char *realloc();
- char *getline();
- struct filepointer *getfile();
-