This file is indexed.

/usr/lib/python3/dist-packages/reproject/spherical_intersect/reproject_slice_c.h is in python3-reproject 0.3.1-4.

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

void _reproject_slice_c(int startx, int endx, int starty, int endy, int nx_out, int ny_out,
    double *xp_inout, double *yp_inout, double *xw_in, double *yw_in, double *xw_out, double *yw_out,
    double *array, double *array_new, double *weights,
    double *overlap, double *area_ratio, double *original, int col_in, int col_out, int col_array, int col_new);

#endif