blob: b5637c88057e3bbcb0aa29c3ce87270fc0990f0a [file] [log] [blame]
Holger Freyther76c95692009-02-17 20:31:30 +00001/* GSM utility functions, e.g. coding and decoding */
2/*
3 * (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 *
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
24#ifndef GSM_UTILS_H
25#define GSM_UTILS_H
26
27#include <sys/types.h>
28
29char *gsm_7bit_decode(u_int8_t *user_data, u_int8_t length);
Holger Freyther59da07b2009-02-23 00:50:38 +000030u_int8_t *gsm_7bit_encode(const char *data, u_int8_t *length);
Holger Freyther76c95692009-02-17 20:31:30 +000031
32#endif