This file is indexed.

/usr/include/libguytools2/tooltypes.h is in libguytools2-dev 2.0.1-1.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
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
#ifndef __TOOLTYPES_H__
#define __TOOLTYPES_H__

#ifndef NO_ERROR
   #define NO_ERROR 0
#endif

// Remember, char, signed char and unsigned char are 3 different types
// as stated by ANSI-C, but there are only two representations !!!

typedef char             t_char;
typedef char *           t_pchar;
typedef const char *     t_pcchar;

typedef signed char      t_schar;
typedef signed char *    t_pschar;
typedef unsigned char    t_uchar;
typedef unsigned char *  t_puchar;

typedef short            t_short;
typedef short *          t_pshort;
typedef unsigned short   t_ushort;
typedef unsigned short * t_pushort;

typedef int              t_int;
typedef int *            t_pint;
typedef unsigned int     t_uint;
typedef unsigned int *   t_puint;

typedef void             t_void;
typedef void *           t_pvoid;

typedef float            t_float;
typedef float *          t_pfloat;
typedef double           t_double;
typedef double *         t_pdouble;

#endif