home *** CD-ROM | disk | FTP | other *** search
- #include "woio.h"
-
- /******************************************************************\
- * *
- * w w oooo *
- * w w iii n n o o n n eeee *
- * w w i nn n o o nn n e *
- * w w w i n n n o o n n n eee *
- * w w w w i n nn o o n nn e *
- * w w iii n n oooo n n eeee *
- * *
- * C o m m a n d L a n g u a g e I n t e r p r e t e r *
- * *
- * *
- * Written by Lucien Cinc *
- * Copyright (c) 1992, 1993 *
- * *
- \******************************************************************/
-
- #include <fcntl.h>
- #include <sys/stat.h>
- #include <ctype.h>
- #include <string.h>
- #include <dos.h>
- #include <io.h>
-
- #define VERSION 11 // version 1.1
-
- typedef union {
- unsigned u;
- struct {
- unsigned Day : 5;
- unsigned Month : 4;
- unsigned Year : 7;
- } b;
- } DOS_FILE_DATE;
-
- typedef union {
- unsigned u;
- struct {
- unsigned Second : 5;
- unsigned Minute : 6;
- unsigned Hour : 5;
- } b;
- } DOS_FILE_TIME;
-