File: decoder.h

package info (click to toggle)
rtl-433 25.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,192 kB
  • sloc: ansic: 55,982; cpp: 3,263; python: 2,544; php: 55; javascript: 43; sh: 18; makefile: 16
file content (17 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @file
    Meta include for all decoders.
*/

#ifndef INCLUDE_DECODER_H_
#define INCLUDE_DECODER_H_

#include <string.h>
#include <stdio.h>
#include "r_device.h"
#include "bitbuffer.h"
#include "data.h"
#include "bit_util.h"
#include "decoder_util.h"
#include "c_util.h"

#endif /* INCLUDE_DECODER_H_ */