This file is indexed.

/usr/include/simgear/sound/readwav.hxx is in libsimgear-dev 3.4.0-3.

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 SG_SOUND_READWAV_HXX
#define SG_SOUND_READWAV_HXX

#if defined( __APPLE__ )
# include <OpenAL/al.h>
#elif defined(OPENALSDK)
# include <al.h>
#else
# include <AL/al.h>
#endif

// forward decls
class SGPath;

namespace simgear
{
  ALvoid* loadWAVFromFile(const SGPath& path, ALenum& format, ALsizei& size, ALfloat& freqf);
  
  ALuint createBufferFromFile(const SGPath& path);
}

#endif // of SG_SOUND_READWAV_HXX