home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / sys / Dir.h next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  296 b   |  22 lines

  1. /* Copyright (C) 1986-1994 by Digital Mars. $Revision: 1.1.1.1 $ */
  2.  
  3. #if __SC__ || __RCC__
  4. #pragma once
  5. #endif
  6.  
  7. #ifndef __SYS_DIR_H
  8. #define __SYS_DIR_H 1
  9.  
  10. #ifndef DIRSIZ
  11. #define DIRSIZ 14
  12. #endif
  13.  
  14. struct    direct
  15. {
  16.   unsigned short int d_ino;
  17.   char d_name[DIRSIZ];
  18. };
  19.  
  20. #endif
  21.  
  22.