Import 'hexparse' function from OpenBSC
[osmocom-bb.git] / include / osmocore / utils.h
1 #ifndef OSMOCORE_UTIL_H
2 #define OSMOCORE_UTIL_H
3
4 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
5
6 #include <stdint.h>
7
8 struct value_string {
9         unsigned int value;
10         const char *str;
11 };
12
13 const char *get_value_string(const struct value_string *vs, uint32_t val);
14 int get_string_value(const struct value_string *vs, const char *str);
15
16 char bcd2char(uint8_t bcd);
17 /* only works for numbers in ascci */
18 uint8_t char2bcd(char c);
19
20 int hexparse(const char *str, uint8_t *b, int max_len);
21
22 #endif