This file is indexed.

/usr/include/lirc/config_flags.h is in liblirc-dev 0.10.0-2.

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
/****************************************************************************
** config_flags.h ***********************************************************
****************************************************************************
*
*/

/**
* @file config_flags.h
* @brief Flags shared between config_file and dump_config.
*/

#ifndef _CONFIG_FLAGS_H
#define _CONFIG_FLAGS_H

/** Description of flag to print. */
struct flaglist {
	char*	name;                   /**< Name of flag. */
	int	flag;                   /**< Flag bitmask.*/
};

/** All flags i config file: Their name and mask. */
extern const struct flaglist all_flags[];

#endif