This file is indexed.

/usr/include/mupdf/fitz/track-usage.h is in libmupdf-dev 1.12.0+ds1-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
#ifndef TRACK_USAGE_H
#define TRACK_USAGE_H

#ifdef TRACK_USAGE

typedef struct track_usage_data_s {
	int count;
	const char *function;
	int line;
	const char *desc;
	struct track_usage_data_s *next;
} track_usage_data_t;

#define TRACK_LABEL(A) \
	do { \
		static track_usage_data_t USAGE_DATA = { 0 };\
		track_usage(&USAGE_DATA, __FILE__, __LINE__, A);\
	} while (0)

#define TRACK_FN() \
	do { \
		static track_usage_data_t USAGE_DATA = { 0 };\
		track_usage(&USAGE_DATA, __FILE__, __LINE__, __FUNCTION__);\
	} while (0)

void track_usage(track_usage_data_t *data, const char *function, int line, const char *desc);

#else

#define TRACK_LABEL(A) do { } while (0)
#define TRACK_FN() do { } while (0)

#endif

#endif