This file is indexed.

/usr/share/doc/libffi-platypus-perl/examples/list_integer_types.pl 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
11
12
use strict;
use warnings;
use FFI::Platypus;

my $ffi = FFI::Platypus->new;

foreach my $type_name (sort FFI::Platypus->types)
{
  my $meta = $ffi->type_meta($type_name);
  next unless $meta->{element_type} eq 'int';
  printf "%20s %s\n", $type_name, $meta->{ffi_type};
}