00001 /* The <dir.h> header gives the layout of a directory. */ 00002 00003 #ifndef _DIR_H 00004 #define _DIR_H 00005 00006 #include <sys/types.h> 00007 00008 #define DIRBLKSIZ 512 /* size of directory block */ 00009 00010 #ifndef DIRSIZ 00011 #define DIRSIZ 60 00012 #endif 00013 00014 struct direct { 00015 ino_t d_ino; 00016 char d_name[DIRSIZ]; 00017 }; 00018 00019 #endif /* _DIR_H */
1.4.6