blob: dc356bd8fc770b38a28f5c3514f9fdc29c0e4c49 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file bitcomp.h
2 * Osmocom bit compression routines. */
3/*
4 * (C) 2016 sysmocom s.f.m.c. GmbH by Max Suraev <msuraev@sysmocom.de>
Max5c18e262016-02-05 13:55:38 +01005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020024#pragma once
25
Max5c18e262016-02-05 13:55:38 +010026/*! \defgroup bitcomp Bit compression
27 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020028 * \file bitcomp.h */
Max5c18e262016-02-05 13:55:38 +010029
30#include <stdint.h>
31#include <stdbool.h>
32
33#include <osmocom/core/bitvec.h>
34
35
36int osmo_t4_encode(struct bitvec *bv);
Max5c18e262016-02-05 13:55:38 +010037
38/*! @} */