This file is indexed.

/usr/include/kuip/kmenu5.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
typedef struct _KmMenu {        /*                                         */ __
  struct _KmMenu *next;         /* link to next menu                       */ __
  struct _KmMenu *down;         /* link to submenu                         */ __
  char         *path;           /* path of parent menu                     */ __
  char         *name;           /* menu name                               */ __
  int           level;          /* depth of submenus                       */ __
  KmCommand    *cmds;           /* link to first command                   */ __
  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                           */ __
} KmMenu;                       /*                                         */ __
                                /*                                         */ __
extern void klnkbrcl();         /*                                         */ __
extern void klnkicon();         /*                                         */ __
extern void klnkkmcl();         /*                                         */ __
extern void klnkmenu();         /*                                         */ __
                                /*                                         */ __