This file is indexed.

/usr/include/freecell-solver/fcs_back_compat.h is in libfreecell-solver-dev 4.16.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * This file is part of Freecell Solver. It is subject to the license terms in
 * the COPYING.txt file found in the top-level directory of this distribution
 * and at http://fc-solve.shlomifish.org/docs/distro/COPYING.html . No part of
 * Freecell Solver, including this file, may be copied, modified, propagated,
 * or distributed except according to the terms contained in the COPYING file.
 *
 * Copyright (c) 2000 Shlomi Fish
 */

/*
 * fcs_back_compat.h - Backward compatibility control configuration file for
 * Freecell Solver
 *
 * fcs_back_compat.h was auto-generated from fcs_back_compat.h.in . Do not modify directly
*/

#ifndef FC_SOLVE__BACK_COMPAT_H
#define FC_SOLVE__BACK_COMPAT_H

#ifdef __cplusplus
extern "C" {
#endif

/* #undef FCS_BREAK_BACKWARD_COMPAT_1 */

#ifdef FCS_BREAK_BACKWARD_COMPAT_1
#ifndef FC_SOLVE_IMPLICIT_T_RANK
#define FC_SOLVE_IMPLICIT_T_RANK
#endif
#endif

#ifdef FC_SOLVE_IMPLICIT_T_RANK
#define FC_SOLVE__PASS_T(arg)
#else
#define FC_SOLVE__PASS_T(arg) , arg
#endif

#ifdef FCS_BREAK_BACKWARD_COMPAT_1
#ifndef FC_SOLVE_IMPLICIT_PARSABLE_OUTPUT
#define FC_SOLVE_IMPLICIT_PARSABLE_OUTPUT
#endif
#endif

#ifdef FC_SOLVE_IMPLICIT_PARSABLE_OUTPUT
#define FC_SOLVE__PASS_PARSABLE(arg)
#else
#define FC_SOLVE__PASS_PARSABLE(arg) , arg
#endif

#ifdef FCS_BREAK_BACKWARD_COMPAT_1
#ifndef FC_SOLVE__REMOVE_TRAILING_WHITESPACE_IN_OUTPUT
#define FC_SOLVE__REMOVE_TRAILING_WHITESPACE_IN_OUTPUT
#endif
#endif

#ifdef FCS_BREAK_BACKWARD_COMPAT_1
#ifndef FC_SOLVE__STRICTER_BOARD_PARSING
#define FC_SOLVE__STRICTER_BOARD_PARSING
#endif
#endif

#ifdef FCS_BREAK_BACKWARD_COMPAT_1
#ifndef FC_SOLVE__REMOVE_OLD_API_1
#define FC_SOLVE__REMOVE_OLD_API_1
#endif
#endif

/* #undef FCS_DISABLE_ERROR_STRINGS */

#ifndef FCS_DISABLE_ERROR_STRINGS
#define FCS_WITH_ERROR_STRS
#endif

#ifdef FCS_WITH_ERROR_STRS
#define FCS__DECL_ERR_BUF(var) char var[120];
#define FCS__DECL_ERR_PTR(var) char *var;
#define FCS__PASS_ERR_STR(arg) , arg
#else
#define FCS__DECL_ERR_BUF(var)
#define FCS__DECL_ERR_PTR(var)
#define FCS__PASS_ERR_STR(arg)
#endif

#ifdef __cplusplus
}
#endif

#endif    /* #ifndef FC_SOLVE__BACK_COMPAT_H */