home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / sozobon / scsrc20 / make / astat.h next >
C/C++ Source or Header  |  1988-10-13  |  511b  |  18 lines

  1.     /************************************************\
  2.     *                        *
  3.     *    astat.h -    Retrofit <sys/stat.h>        *
  4.     *        for the Atari ST machines    *
  5.     *                        *
  6.     *    J.R. Bammi                    *
  7.     *                        *
  8.     \************************************************/
  9.  
  10. struct    stat
  11. {
  12.     char    st_sp1[21];    /* Junk        */
  13.     char    st_mode;    /* File attributes */
  14.     time_t  st_mod;    /* Mod time, we use the date & time as 1 long */
  15.     long    st_size;    /* File size       */
  16.     char    st_sp2[14];    /* File name       */
  17. };
  18.