This file is indexed.

/usr/include/lct/modifiers.h is in console-tools-dev 1:0.2.3dbs-65.1ubuntu2.

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
#ifndef _LCT_MODIFIERS_H
#define _LCT_MODIFIERS_H

#define M_PLAIN  0
#define M_SHIFT  (1 << KG_SHIFT)
#define M_CTRL   (1 << KG_CTRL)
#define M_ALT    (1 << KG_ALT)
#define M_ALTGR  (1 << KG_ALTGR)
#define M_SHIFTL (1 << KG_SHIFTL)
#define M_SHIFTR (1 << KG_SHIFTR)
#define M_CTRLL  (1 << KG_CTRLL)
#define M_CTRLR  (1 << KG_CTRLR)

#endif