This file is indexed.

/usr/include/gnash/zlib_adapter.h is in gnash-dev 0.8.11~git20160109-1build1.

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
// zlib_adapter.h    -- Thatcher Ulrich 2003

// This source code has been donated to the Public Domain.  Do
// whatever you want with it.


#ifndef ZLIB_ADAPTER_H
#define ZLIB_ADAPTER_H


#include "dsodefs.h"

#include <memory>

namespace gnash {

class IOChannel;


/// Code to wrap zlib compression/decompression around an IOChannel stream.
namespace zlib_adapter
{
    // NOTE: these functions will return NULL if
    // HAVE_ZLIB_H is not defined

    /// \brief
    /// Returns a read-only IOChannel stream that inflates the remaining
    /// content of the given input stream, as you read data from the
    /// new stream.
    //
    ///
    DSOEXPORT std::unique_ptr<IOChannel>
        make_inflater(std::unique_ptr<IOChannel> in);

} // namespace gnash.zlib_adapter
} // namespace gnash


#endif // ZLIB_ADAPTER_H


// Local Variables:
// mode: C++
// c-basic-offset: 8 
// tab-width: 8
// indent-tabs-mode: t
// End: