This file is indexed.

/usr/share/doc/xviewg/examples/extensions/bitmap_impl.h is in xview-examples 3.2p1.4-28.1.

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
#include "bitmap.h"

typedef struct {
    Xv_object   public_self;    /* pointer back to self */
    GC          gc;             /* GC to render logo */
    Pixmap      bitmap;
    int         width, height;  /* ...of pixmap */
} Bitmap_private;

#define BITMAP_PUBLIC(item)  XV_PUBLIC(item)
#define BITMAP_PRIVATE(item) \
    XV_PRIVATE(Bitmap_private, Bitmap_public, item)