This file is indexed.

/usr/include/libipv1/ip_data.gbl 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
#ifndef _psi_src_lib_libipv1_ipdata_gbl_
#define _psi_src_lib_libipv1_ipdata_gbl_

#ifdef __cplusplus
extern "C" {
#endif

int ip_count(const char *keyword, int *count, int n, ...);
int ip_count_v(const char *keyword, int *count, int n, int *v);
int ip_boolean(const char *keyword, int *boolean, int n, ...);
int ip_boolean_v(const char *keyword, int *boolean, int n, int *v);
int ip_exist(const char *keyword, int n, ...);
int ip_exist_v(const char *keyword, int n, int *v);
int ip_data(const char *keyword, const char *conv, void *value, int n, ...);
int ip_data_v(const char *keyword, const char *conv, void *value, int n, int *v);
int ip_string(const char *keyword, char **value, int n, ...);
int ip_string_v(const char *keyword, char **value, int n, int *v);
int ip_value(const char *keyword, ip_value_t **value, int n, ...);
int ip_value_v(const char *keyword, ip_value_t **value, int n, int *v);
int ip_int_array(const char *keyword, int *arr, int len);
int ip_double_array(const char *keyword, double *arr, int len);

#ifdef __cplusplus
}
#endif

#endif /* header guard */