This file is indexed.

/usr/include/lirc_private.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * lirc.h - linux infrared remote control header file
 * last modified 2010/06/03 by Jarod Wilson
 */

/**
 * @defgroup  private_api  Internal API
 * @file lirc_private.h
 * @brief Main include file for lirc applications.
 */


#ifndef _LIRC_PRIVATE_H
#define _LIRC_PRIVATE_H

#ifdef HAVE_KERNEL_LIRC_H
#include <linux/lirc.h>
#else
#include "media/lirc.h"
#endif

#include "ir_remote_types.h"
#include "lirc_log.h"
#include "lirc_options.h"
#include "lirc-utils.h"
#include "curl_poll.h"
#include "config_file.h"
#include "dump_config.h"
#include "input_map.h"
#include "driver.h"
#include "ir_remote_types.h"
#include "drv_admin.h"
#include "ir_remote.h"
#include "receive.h"
#include "release.h"
#include "serial.h"
#include "transmit.h"
#include "ciniparser.h"

#endif