This file is indexed.

/usr/include/kitchensink/kitlib.h is in libsdl-kitchensink-dev 0.0.7-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
23
24
25
26
27
28
29
30
31
32
33
#ifndef KITLIB_H
#define KITLIB_H

#include "kitchensink/kiterror.h"
#include "kitchensink/kitsource.h"
#include "kitchensink/kitplayer.h"
#include "kitchensink/kitutils.h"
#include "kitchensink/kitconfig.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct Kit_Version {
    unsigned char major;
    unsigned char minor;
    unsigned char patch;
} Kit_Version;

enum {
    KIT_INIT_FORMATS = 0x1,
    KIT_INIT_NETWORK = 0x2,
};

KIT_API int Kit_Init(unsigned int flags);
KIT_API void Kit_Quit();
KIT_API void Kit_GetVersion(Kit_Version *version);

#ifdef __cplusplus
}
#endif

#endif // KITLIB_H