This file is indexed.

/usr/include/bobcat/indent is in libbobcat-dev 3.23.01-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
#ifndef INCLUDED_BOBCAT_INDENT_
#define INCLUDED_BOBCAT_INDENT_

#include <ostream>

namespace FBB
{

class Indent
{
    friend std::ostream &indent(std::ostream &out);

    static size_t s_width;
    static size_t s_inc;

    public:
        static void setWidth(size_t width);             // .f
        static void setInc(size_t inc);                 // .f
        static void clear();                            // .f
        static void inc();                              // .f
        static void dec();
};

inline void Indent::clear()
{
    s_width = 0;
}
inline void Indent::inc()
{
    s_width += s_inc;
}
inline void Indent::setInc(size_t inc)
{
    s_inc = inc;
}
inline void Indent::setWidth(size_t width)
{
    s_width = width;
}

    // Free functions

std::ostream &indent(std::ostream &out);

inline std::ostream &nlindent(std::ostream &out)
{
    return out << "\n" << indent;
}

std::ostream &incindent(std::ostream &out);
std::ostream &indentinc(std::ostream &out);

std::ostream &decindent(std::ostream &out);
std::ostream &indentdec(std::ostream &out);

} // namespace FBB

#endif