This file is indexed.

/usr/include/freecell-solver/fcs_limit.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
/*
 * 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_limit.h - the purpose of this file is to define the fcs_int_limit_t
// type, and the FCS_INT_LIMIT_MAX constant.
#pragma once

#include <stdint.h>

typedef intptr_t fcs_int_limit_t;
#define FCS_INT_LIMIT_MAX INTPTR_MAX