This file is indexed.

/usr/include/sary/bsearch.h is in libsary-dev 1:1.2.0-2.

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
31
#ifndef __SARY_BSEARCH_H__
#define __SARY_BSEARCH_H__

#include <glib.h>
#include <sary/saryconfig.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

gpointer sary_bsearch_first	(gconstpointer key, 
				 gconstpointer base, 
				 gsize len,
				 gsize elt_size, 
				 SaryInt *next_low,
				 SaryInt *next_high,
				 GCompareFunc compare_func);

gpointer sary_bsearch_last	(gconstpointer key, 
				 gconstpointer base, 
				 gsize len,
				 gsize elt_size, 
				 SaryInt prev_low,
				 SaryInt prev_high,
				 GCompareFunc compare_func);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __SARY_BSEARCH_H__ */