This file is indexed.

/usr/include/umview/linux_dirent.h is in libumlib-dev 0.6-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#ifndef _LINUX_DIRENT_H
#define _LINUX_DIRENT_H

struct dirent {
	long    d_ino;
	__kernel_off_t  d_off;
	unsigned short  d_reclen;
	char    d_name[256]; /* We must not include limits.h! */
};

struct dirent64 {
	__u64   d_ino;
	__s64   d_off;
	unsigned short  d_reclen;
	unsigned char d_type;
	char    d_name[256];
};

#endif