blob: f5183d546aad818e11745413e68c0c1dae892e14 [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/*
2 * (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <sys/types.h>
25#include <osmocore/msgb.h>
26#include <osmocore/gsm_utils.h>
27
28int main(int argc, char** argv)
29{
30 printf("SMS testing\n");
31 struct msgb *msg;
32 uint8_t *sms;
33 uint8_t i;
34
35 /* test 7-bit coding/decoding */
36 const char *input = "test text";
37 uint8_t length;
38 uint8_t coded[256];
39 char result[256];
40
41 length = gsm_7bit_encode(coded, input);
42 gsm_7bit_decode(result, coded, length);
43 if (strcmp(result, input) != 0) {
44 printf("7 Bit coding failed... life sucks\n");
45 printf("Wanted: '%s' got '%s'\n", input, result);
46 }
47}