This file is indexed.

/usr/share/doc/libgtkglext1-dev/examples/logo-model.h is in libgtkglext1-dev 1.2.0-3.1fakesync3.

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
/*
 * logo-model.h:
 * Functions for drawing GtkGLExt logo models.
 *
 * written by Naofumi Yasufuku  <naofumi@users.sourceforge.net>
 */

#ifndef __LOGO_MODEL_H__
#define __LOGO_MODEL_H__

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/*
 * Draw center cube.
 */
void logo_draw_cube (void);

/*
 * Draw "G", "T", "K" color planes.
 */
void logo_draw_g_plane (void);
void logo_draw_t_plane (void);
void logo_draw_k_plane (void);

/*
 * Draw "G", "T", "K" 3D characters.
 */
void logo_draw_g (void);
void logo_draw_t (void);
void logo_draw_k (void);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __LOGO_MODEL_H__ */