This file is indexed.

/usr/include/kuip/kmenu4.h is in libpacklib1-dev 20061220+dfsg3-4.

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
typedef struct _KmCommand {     /*                                         */ __
  struct _KmCommand *next;      /* link to next command                    */ __
  char         *path;           /* command path                            */ __
  char         *name;           /* command name                            */ __
  int           hidden;         /* flag if command is invisible            */ __
  int           level;          /* depth of submenus                       */ __
  int           total;          /* total number of parameters              */ __
  int           mandatory;      /* number of mandatory parameters          */ __
  KmParameter **par;            /* list of total parameter descriptions    */ __
  int           list_par;       /* index+1 of parameter taking a list      */ __
  int           xcount;         /* count number of action calls            */ __
  SUBROUTINE   *action_F;       /* action routine                          */ __
  IntFunc      *action_C;       /* action routine                          */ __
  SUBROUTINE   *user_help_F;    /* user help routine                       */ __
  pCharFunc    *user_help_C;    /* user help routine                       */ __
  int          nguidance;       /* number of lines in guidance text        */ __
  char        **guidance;       /* help text                               */ __
  int          nkeyword;        /* number of lines for keywords            */ __
  char        **keyword;        /* list of keywords                        */ __
  int          nhlink;          /* number of lines for links               */ __
  char        **hlink;          /* list of links                           */ __
  int           argc;           /* number of arguments entered             */ __
  char        **argv;           /* argc argument values                    */ __
  char         *argline;        /* argument line as entered                */ __
  int          *argoffs;        /* argc offsets into argline for KUGETE    */ __
} KmCommand;                    /*                                         */ __
                                /*                                         */ __