/usr/include/lirc/dump_config.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | /****************************************************************************
** dump_config.h ***********************************************************
****************************************************************************
*
* dump_config.h - dumps data structures into file
*
* Copyright (C) 1998 Pablo d'Angelo <pablo@ag-trek.allgaeu.org>
*
*/
/**
* @file dump_config.h
*
* @brief Dumps data structures into file.
* @author Pablo d'Angelo
* @ingroup private_api
*/
#ifndef _DUMP_CONFIG_H
#define _DUMP_CONFIG_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include "ir_remote.h"
void fprint_comment(FILE* f,
const struct ir_remote* rem,
const char* commandline);
void fprint_flags(FILE* f, int flags);
void fprint_remotes(FILE* f,
const struct ir_remote* all,
const char* commandline);
void fprint_remote_gap(FILE* f, const struct ir_remote* rem);
void fprint_remote_head(FILE* f, const struct ir_remote* rem);
void fprint_remote_foot(FILE* f, const struct ir_remote* rem);
void fprint_remote_signal_head(FILE* f, const struct ir_remote* rem);
void fprint_remote_signal_foot(FILE* f, const struct ir_remote* rem);
void fprint_remote_signal(FILE* f,
const struct ir_remote* rem,
const struct ir_ncode* codes);
void fprint_remote_signals(FILE* f, const struct ir_remote* rem);
void fprint_remote(FILE* f,
const struct ir_remote* rem,
const char* commandline);
#ifdef __cplusplus
}
#endif
#endif
|