This file is indexed.

/usr/include/sary/saryconfig.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
#ifndef __SARY_CONFIG_H__
#define __SARY_CONFIG_H__

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

/*
 * Use SaryInt instead of gint for ease to support 64 bit
 * array in future. Note: GINT_FROM_BE, GINT_TO_BE must also
 * be replaced for 64 bit support.
 */
typedef int SaryInt;

extern const int sary_major_version;
extern const int sary_minor_version;
extern const int sary_micro_version;

#define SARY_MAJOR_VERSION 1
#define SARY_MINOR_VERSION 2
#define SARY_MICRO_VERSION 0

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __SARY_CONFIG_H__ */