This file is indexed.

/usr/share/doc/libffi-platypus-perl/examples/var_array.c is in libffi-platypus-perl 0.45-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
int
sum(int *array, int size)
{
  int total,i;
  for(i=0,total=0; i<size; i++)
  {
    total += array[i];
  }
  return total;
}