This file is indexed.

/usr/include/openbox/3.5/obt/version.h is in openbox-dev 3.5.2-6.

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

#define OBT_MAJOR_VERSION 3
#define OBT_MINOR_VERSION 5
#define OBT_MICRO_VERSION 3
#define OBT_VERSION OBT_MAJOR_VERSION.OBT_MINOR_VERSION.OBT_MICRO_VERSION

#define OBT_CHECK_VERSION(major,minor,micro) \
    (OBT_MAJOR_VERSION > (major) || \
     (OBT_MAJOR_VERSION == (major) && OBT_MINOR_VERSION > (minor)) || \
     (OBT_MAJOR_VERSION == (major) && OBT_MINOR_VERSION == (minor) && \
      OBT_MICRO_VERSION >= (micro)))

#endif