aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/gapk/utils.h
blob: 0b8b75bf47830af920709960a590b3cb708e18d0 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* Various helpers */

/*
 * This file is part of gapk (GSM Audio Pocket Knife).
 *
 * gapk is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * gapk is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with gapk.  If not, see <http://www.gnu.org/licenses/>.
 */

#pragma once

#include <stdint.h>

static inline int
msb_get_bit(const uint8_t *buf, int bn)
{
	int pos_byte = bn >> 3;
	int pos_bit  = 7 - (bn & 7);

	return (buf[pos_byte] >> pos_bit) & 1;
}

static inline void
msb_put_bit(uint8_t *buf, int bn, int bit)
{
	int pos_byte = bn >> 3;
	int pos_bit  = 7 - (bn & 7);

	if (bit)
		buf[pos_byte] |=  (1 << pos_bit);
	else
		buf[pos_byte] &= ~(1 << pos_bit);
}

static inline void
msb_set_bit(uint8_t *buf, int bn)
{
	int pos_byte = bn >> 3;
	int pos_bit  = 7 - (bn & 7);

	buf[pos_byte] |=  (1 << pos_bit);
}

static inline void
msb_clr_bit(uint8_t *buf, int bn)
{
	int pos_byte = bn >> 3;
	int pos_bit  = 7 - (bn & 7);

	buf[pos_byte] &= ~(1 << pos_bit);
}


static inline int
lsb_get_bit(const uint8_t *buf, int bn)
{
	int pos_byte = bn >> 3;
	int pos_bit  = bn & 7;

	return (buf[pos_byte] >> pos_bit) & 1;
}

static inline void
lsb_put_bit(uint8_t *buf, int bn, int bit)
{
	int pos_byte = bn >> 3;
	int pos_bit  = bn & 7;

	if (bit)
		buf[pos_byte] |=  (1 << pos_bit);
	else
		buf[pos_byte] &= ~(1 << pos_bit);
}

static inline void
lsb_set_bit(uint8_t *buf, int bn)
{
	int pos_byte = bn >> 3;
	int pos_bit  = bn & 7;

	buf[pos_byte] |=  (1 << pos_bit);
}

static inline void
lsb_clr_bit(uint8_t *buf, int bn)
{
	int pos_byte = bn >> 3;
	int pos_bit  = bn & 7;

	buf[pos_byte] &= ~(1 << pos_bit);
}