blob: 2d44e75ccd0ef31c55864f39c2bda2c3b477ee5b [file] [log] [blame]
Harald Welted83c5132016-10-26 09:38:24 +02001#pragma once
2
3#include <osmocom/core/bits.h>
4
Harald Welted83c5132016-10-26 09:38:24 +02005struct hdlc_proc {
6 ubit_t history[8];
7 ubit_t next_outbyte[8];
Harald Welted83c5132016-10-26 09:38:24 +02008 uint8_t num_bits;
9};
10
11int process_raw_hdlc(struct hdlc_proc *hdlc, uint8_t *data, unsigned int len);