home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / pcmag / vol7n14.arc / FIG6.TXT < prev    next >
Text File  |  1988-06-30  |  433b  |  24 lines

  1. struct    _attrs
  2. {
  3.     unsigned reserved : 2;
  4.     unsigned is_archivable : 1;
  5.     unsigned is_dir : 1;
  6.     unsigned is_label : 1;
  7.     unsigned is_system : 1;
  8.     unsigned is_hidden : 1;
  9.     unsigned is_readonly : 1;
  10. };
  11.  
  12. struct _files
  13. {
  14.     char filename[80];
  15.     struct _attrs attribute;
  16. } files[MAXFILES];
  17.  
  18.     .
  19.     .
  20.     if(files[i].attribute.is_readonly)
  21.         printf("\nFile is READ ONLY");
  22.     .
  23.     .
  24.