blob: 0f1ea3bb708872dfebb9725789db548293c97d39 [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001#ifndef OSMOCORE_UTIL_H
2#define OSMOCORE_UTIL_H
3
4#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
5
Harald Welted284cd92010-03-01 21:58:31 +01006#include <stdint.h>
7
8struct value_string {
9 unsigned int value;
10 const char *str;
11};
12
13const char *get_value_string(const struct value_string *vs, uint32_t val);
14int get_string_value(const struct value_string *vs, const char *str);
15
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020016char osmo_bcd2char(uint8_t bcd);
Harald Weltea73e2f92010-03-04 10:50:32 +010017/* only works for numbers in ascci */
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020018uint8_t osmo_char2bcd(char c);
Harald Welted284cd92010-03-01 21:58:31 +010019
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020020int osmo_hexparse(const char *str, uint8_t *b, int max_len);
21char *osmo_hexdump(const unsigned char *buf, int len);
22char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len);
23char *osmo_ubit_dump(const uint8_t *bits, unsigned int len);
Harald Welte3eba9912010-07-30 10:37:29 +020024
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020025#define osmo_static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
Holger Hans Peter Freyther52c07ca2011-01-16 17:37:27 +010026
Harald Welte28222962011-02-18 20:37:04 +010027void osmo_str2lower(char *out, const char *in);
28void osmo_str2upper(char *out, const char *in);
29
Pablo Neira Ayuso3abad6a2011-03-28 19:24:22 +020030#define OSMO_SNPRINTF_RET(ret, rem, offset, len) \
31do { \
32 len += ret; \
33 if (ret > rem) \
34 ret = rem; \
35 offset += ret; \
36 rem -= ret; \
37} while (0)
38
Harald Welteec8b4502010-02-20 20:34:29 +010039#endif