This file is indexed.

/usr/include/libjaylink/version.h is in libjaylink-dev 0.1.0-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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * This file is part of the libjaylink project.
 *
 * Copyright (C) 2015 Marc Schink <jaylink-dev@marcschink.de>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef LIBJAYLINK_VERSION_H
#define LIBJAYLINK_VERSION_H

/**
 * @file
 *
 * Package and library version macros.
 */

/** Major version number of the libjaylink package. */
#define JAYLINK_VERSION_PACKAGE_MAJOR		0

/** Minor version number of the libjaylink package. */
#define JAYLINK_VERSION_PACKAGE_MINOR		1

/** Micro version number of the libjaylink package. */
#define JAYLINK_VERSION_PACKAGE_MICRO		0

/** Version number string of the libjaylink package. */
#define JAYLINK_VERSION_PACKAGE_STRING		"0.1.0"

/** <i>Current</i> version number of the libjaylink libtool interface. */
#define JAYLINK_VERSION_LIBRARY_CURRENT		0

/** <i>Revision</i> version number of the libjaylink libtool interface. */
#define JAYLINK_VERSION_LIBRARY_REVISION	0

/** <i>Age</i> version number of the libjaylink libtool interface. */
#define JAYLINK_VERSION_LIBRARY_AGE		0

/** Version number string of the libjaylink libtool interface. */
#define JAYLINK_VERSION_LIBRARY_STRING		"0:0:0"

#endif /* LIBJAYLINK_VERSION_H */