This file is indexed.

/usr/include/libipv1/ip_error.h is in libpsi3-dev 3.4.0-6build2.

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
/*! \file
    \ingroup IPV1
    \brief Enter brief description of file here 
*/

#ifndef _psi_src_lib_libipv1_iperror_h_
#define _psi_src_lib_libipv1_iperror_h_

#ifdef __cplusplus
extern "C" {
#endif

#define IPE_OK            0  /* No problem. */
#define IPE_KEY_NOT_FOUND 1  /* The keyword was not found. */
#define IPE_OUT_OF_BOUNDS 2  /* An array subscript was out of bounds. */
#define IPE_MALLOC        3  /* Memory allocation failed. */
#define IPE_NOT_AN_ARRAY  4  /* Gave index for data which isn't an array */
#define IPE_NOT_A_SCALAR  5  /* Didn't give index for data which is an array */
#define IPE_TYPE          6  /* The datum is not of the appropriate type. */

#ifdef __cplusplus
}
#endif

#endif /* header guard */