This file is indexed.

/usr/include/kuip/kalias.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
28
/*
 * $Id: kalias.h,v 1.1.1.1 1996/03/08 15:32:59 mclareni Exp $
 *
 * $Log: kalias.h,v $
 * Revision 1.1.1.1  1996/03/08 15:32:59  mclareni
 * Kuip
 *
 */
#define ALIAS_TABLE_SIZE 97     /* should be a prime */

EXTERN struct {
  int         translate;        /* flag if translation wanted */
  int         substitutions;    /* how many more before recursive alarm */
  HashTable  *arg_table;        /* Argument alias table */
  HashTable  *cmd_table;        /* Command alias table */
  HashTable  *global_value;     /* global variable values */
  HashTable  *global_text;      /* global variable explanation text */
  HashTable  *var_table;        /* macro variables */
} kc_alias;

extern int   match_paren( const char* );
extern char* repl_variable(   char*);
extern char* repl_sysfun(     char*, int);
extern char* subst_arg_alias( char*);
extern char* subst_cmd_alias( char*);
extern char* subst_var_alias( char*);
extern char* subst_sysfun(    char*, int);
extern char* var_value( const char* );