This file is indexed.

/usr/include/libipv1/ip_global.h is in libpsi3-dev 3.4.0-6+b1.

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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*! \file
    \ingroup IPV1
    \brief Enter brief description of file here 
*/

#ifndef _psi_src_lib_libipv1_ipglobal_h_
#define _psi_src_lib_libipv1_ipglobal_h_

#ifdef __cplusplus
extern "C" {
#endif

 /* Global data for the ip routines. */

#ifdef _IP_ALLOCATE_GLOBAL_
#define EXTERN
#define INITIALIZE(x,y) x=y
#else
#define EXTERN extern
#define INITIALIZE(x,y) x
#endif

  /*  The input file. */
EXTERN FILE INITIALIZE(*ip_in,NULL);

  /*  The output file. */
EXTERN FILE INITIALIZE(*ip_out,NULL);

  /* The parsed input. */
EXTERN ip_keyword_tree_t INITIALIZE(*ip_tree,NULL);
EXTERN ip_keyword_tree_t INITIALIZE(*sub_tree,NULL);

  /* Pointers within ip_tree to the current keywords
   * (up and down are unused). */
EXTERN ip_keyword_tree_list_t INITIALIZE(*ip_cwk,NULL);

 /* This is 1 if everything is to be converted into uppercase. */
EXTERN int INITIALIZE(ip_uppercase,0);

 /* This is 1 if keywords are to be shown as they are searched. */
EXTERN int ip_keyword;

#ifdef __cplusplus
}
#endif

#endif /* header guard */