home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 202.img / SCO386N2.TD0 / usr / include / sys / dirent.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-05-18  |  640 b   |  24 lines

  1.  
  2. /*
  3.  *    @(#) dirent.h 1.1 88/05/18 
  4.  *
  5.  *    Copyright (C) The Santa Cruz Operation, 1984, 1985, 1986, 1987, 1988.
  6.  *    Copyright (C) Microsoft Corporation, 1984, 1985, 1986, 1987, 1988.
  7.  *    This Module contains Proprietary Information of
  8.  *    The Santa Cruz Operation, Microsoft Corporation
  9.  *    and AT&T, and should be treated as Confidential.
  10.  */
  11.  
  12. /*
  13.  * The following structure defines the file
  14.  * system independent directory entry.
  15.  *
  16.  */
  17.  
  18. struct dirent {
  19.     long        d_ino;        /* inode number of entry */
  20.     off_t        d_off;        /* offset of disk direntory entry */
  21.     unsigned short    d_reclen;    /* length of this record */
  22.     char        d_name[1];    /* name of file */
  23. };
  24.