home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / MARK_WC2.LZH / INCLUDE / ACCESS.H next >
Text File  |  1988-04-27  |  604b  |  19 lines

  1. /*
  2.  * access.h -- modes for the access system call.
  3.  *
  4.  * Copyright (c) 1982-1987, Mark Williams Company, Chicago
  5.  * This file and its contents may not be copied or distributed
  6.  * without permission.
  7.  */
  8.  
  9. #define    AREAD    04        /* Test for read */
  10. #define    AWRITE    02        /* Test for write */
  11. #define    AEXEC    01        /* Test for execute */
  12. #define    AAPPND    AWRITE        /* Test for append */
  13.  
  14. /* Dummy directory modes */
  15. #define    ALIST    AREAD        /* List directory */
  16. #define    ADEL    AWRITE        /* Delete directory entry */
  17. #define    ASRCH    AEXEC        /* Search directory */
  18. #define    ACREAT    AAPPND        /* Create directory entry */
  19.