This file is indexed.

/usr/include/reiser4/print.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
28
29
30
/* Copyright (C) 2001-2005 by Hans Reiser, licensing governed by
   reiser4progs/COPYING.
   
   print.h -- different print functions. */

#ifndef REISER4_PRINT_H
#define REISER4_PRINT_H

#ifndef ENABLE_MINIMAL
#include <reiser4/types.h>

extern void reiser4_print_fini(void);

extern errno_t reiser4_print_init(uint32_t pool);

extern char *reiser4_print_key(reiser4_key_t *key);

extern char *reiser4_print_inode(reiser4_key_t *key);

#ifdef ENABLE_DEBUG

extern void reiser4_print_format(reiser4_format_t *format, uint16_t options);

extern void reiser4_print_node(reiser4_node_t *node, uint32_t start, 
			       uint32_t count, uint16_t options);

#endif

#endif
#endif