This file is indexed.

/usr/share/doc/xviewg/examples/extensions/image_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 <stdio.h> /* for BUFSIZ */
#include "image.h"

typedef struct _image {
    Xv_object	   public_self;	        /* pointer back to self */
    char          *filename;            /* for get/find */
    Xv_Screen      screen;              /* need to retain for list */
    struct _image *next;	        /* linked list for find */
} Image_private;

#define IMAGE_PUBLIC(item)	XV_PUBLIC(item)
#define IMAGE_PRIVATE(item)	XV_PRIVATE(Image_private, Image_public, item)