home *** CD-ROM | disk | FTP | other *** search
- /* fcb.h - C declarations for the CP/M file control block struct */
-
- struct fcb { /* CP/M FCB entry */
- char drv;
- char filename[8];
- char type[3];
- char extent;
- char s1, s2, rec_count;
- char map[16];
- char rec, d1, d2, d3;
- };
-
- #define FCB_SIZE sizeof(struct fcb)