This file is indexed.

/usr/share/doc/libafterimage-dev/examples/common.h is in libafterimage-dev 2.2.12-11.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
13
14
15
#ifndef AFTERIMAGE_COMMON_H_HEADER_INCLUDED
#define AFTERIMAGE_COMMON_H_HEADER_INCLUDED

extern Atom _XA_WM_DELETE_WINDOW;
Window create_top_level_window( ASVisual *asv, Window root, int x, int y,
	                            unsigned int width, unsigned int height,
								unsigned int border_width,
								unsigned long attr_mask,
								XSetWindowAttributes *attr,
								const char *app_class, const char *app_name );
Pixmap set_window_background_and_free( Window w, Pixmap p );

void wait_closedown( Window w );

#endif