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