Newer
Older
ubixos / Dump / hybos / include / sys / dir.h
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 286 bytes Sync
#ifndef _DIR_H
#define _DIR_H

/**
 * Size of directory block
 */
#define	DIRBLKSIZE	512

#ifndef DIRSIZ
#define DIRSIZ 14
#endif

typedef struct __DIR__DIRECT_
{
	unsigned int d_ino; /* defined as __kernel_ino_t in posix_types.h */
	char d_name[DIRSIZ];
} direct;

#endif /* _DIR_H */