This file is indexed.

/usr/include/gavl/gavl_version.h is in libgavl-dev 1.2.0-4.

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
#ifndef __GAVL_VERSION_H_
#define __GAVL_VERSION_H_

#define GAVL_VERSION "1.2.0"

#define GAVL_VERSION_MAJOR 1
#define GAVL_VERSION_MINOR 2
#define GAVL_VERSION_MICRO 0

#define GAVL_MAKE_BUILD(a,b,c) ((a << 16) + (b << 8) + c)

#define GAVL_BUILD \
GAVL_MAKE_BUILD(GAVL_VERSION_MAJOR, \
                GAVL_VERSION_MINOR, \
                GAVL_VERSION_MICRO)

#endif // __GAVL_VERSION_H_