This file is indexed.

/usr/include/wvstreams/wvattrs.h is in libwvstreams-dev 4.6.1-12~deb9u1.

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
#ifndef __WVATTRS_H
#define __WVATTRS_H

#include "wvstring.h"

class WvAttrs
{
    char *attrlist;
    unsigned int attrlen;

    char *_get(WvStringParm name) const;
public:
    WvAttrs();
    WvAttrs(const WvAttrs &copy);
    virtual ~WvAttrs();

    void set(WvStringParm name, WvStringParm value);
    inline WvString get(WvStringParm name) const
    	{ return _get(name); }
};

#endif