This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.22/Imager/include/rendert.h is in libimager-perl 1.004+dfsg-1build1.

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
#ifndef IMAGER_RENDERT_H
#define IMAGER_RENDERT_H

#include "imdatatypes.h"

struct i_render_tag {
  int magic;
  i_img *im;

  i_img_dim line_width;
  i_color *line_8;
  i_fcolor *line_double;

  i_img_dim fill_width;
  i_color *fill_line_8;
  i_fcolor *fill_line_double;
};

#endif