This file is indexed.

/usr/include/cleri/version.h is in libcleri-dev 0.9.4-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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * version.h
 *
 *  Created on: Jun 19, 2017
 *      Author: Jeroen van der Heijden <jeroen@transceptor.technology>
 */
#ifndef CLERI_VERSION_H_
#define CLERI_VERSION_H_

#define LIBCLERI_VERSION_MAJOR 0
#define LIBCLERI_VERSION_MINOR 9
#define LIBCLERI_VERSION_PATCH 4

#define LIBCLERI_STRINGIFY(num) #num
#define LIBCLERI_VERSION_STR(major,minor,patch)    \
    LIBCLERI_STRINGIFY(major) "."                  \
    LIBCLERI_STRINGIFY(minor) "."                  \
    LIBCLERI_STRINGIFY(patch)

#define LIBCLERI_VERSION LIBCLERI_VERSION_STR(    \
        LIBCLERI_VERSION_MAJOR,                    \
        LIBCLERI_VERSION_MINOR,                    \
        LIBCLERI_VERSION_PATCH)

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

const char * cleri_version(void);

#ifdef __cplusplus
}
#endif

#endif /* CLERI_VERSION_H_ */