summaryrefslogtreecommitdiffstats
path: root/util.c
blob: fa52c245cd7f4e28aaf32e3c3b7ba4eb80b88e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * \file util.c
 * \brief Utility functions
 *
 * \subsection Copyright
 * Copyright (c) 2022 Michael Buesch <m@bues.ch>
 *
 * \subsection License
 * Licensed under the terms of the GNU General Public License version 2.
 */

#include "util.h"


const uint8_t bit2mask_lt[] = {
	0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
};
bues.ch cgit interface