This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.22/B/Hooks/OP/Check/Install/hook_op_check.h is in libb-hooks-op-check-perl 0.19-2build2.

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

#include "perl.h"

START_EXTERN_C

typedef UV hook_op_check_id;

typedef OP *(*hook_op_check_cb) (pTHX_ OP *, void *);
hook_op_check_id hook_op_check (opcode type, hook_op_check_cb cb, void *user_data);
void *hook_op_check_remove (opcode type, hook_op_check_id id);

END_EXTERN_C

#endif