blob: 5ea56ce96c64e345a802cc636d2809ebbdf05bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef __GSMSP_COMMON_H__
#define __GSMSP_COMMON_H__ 1
#ifdef __cplusplus
extern "C" {
#endif
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
#define MIN(a,b) ((a)<(b)?(a):(b))
#define MAX(a,b) ((a)>(b)?(a):(b))
/* DISABLE me for release build. Otherwise with debug output. */
//#define GSMSP_DEBUG 1
#ifdef GSMSP_DEBUG
# define DEBUGF(a...) do { \
fprintf(stderr, "DEBUG %s:%d ", __func__, __LINE__); \
fprintf(stderr, a); \
} while (0)
#else
# define DEBUGF(a...)
#endif
# define HEXDUMPF(data, len, a...) do { \
printf("HEX %s:%d ", __func__, __LINE__); \
printf(a); \
hexdump(data, len); \
} while (0)
void hexdump(const unsigned char *data, size_t len);
#ifndef GSMDECODE
#include "interleave.h"
struct _opt
{
INTERLEAVE_CTX ictx;
};
#endif
#ifdef __cplusplus
}
#endif
#endif /* !__GSMSP_COMMON_H__ */
|