This file is indexed.

/usr/include/reiser4/factory.h is in libreiser4-dev 1.0.7-6.3fakesync2.

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
20
21
22
23
24
25
26
27
/* Copyright (C) 2001-2005 by Hans Reiser, licensing governed by
   reiser4progs/COPYING.
   
   factory.h -- plugin factory header file. */

#ifndef REISER4_FACTORY_H
#define REISER4_FACTORY_H

#include <reiser4/types.h>

extern void reiser4_factory_fini(void);
extern errno_t reiser4_factory_init(void);

#ifndef ENABLE_MINIMAL
extern reiser4_plug_t *reiser4_factory_nfind(char *name);
#endif

extern errno_t reiser4_factory_foreach(plug_func_t plug_func,
				       void *data);

extern void reiser4_factory_load(reiser4_plug_t *plug);

extern reiser4_plug_t *reiser4_factory_ifind(rid_t type, rid_t id);

extern reiser4_plug_t *reiser4_factory_cfind(plug_func_t plug_func,
					     void *data);
#endif