blob: 01b0ab99623513f66181465803c3bfc65f0f4361 [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]))
Harald Weltee9b744e2011-06-26 14:19:54 +02005#define OSMO_MAX(a, b) (a) >= (b) ? (a) : (b)
Harald Welteec8b4502010-02-20 20:34:29 +01006
Harald Welted284cd92010-03-01 21:58:31 +01007#include <stdint.h>
8
9struct value_string {
10 unsigned int value;
11 const char *str;
12};
13
14const char *get_value_string(const struct value_string *vs, uint32_t val);
15int get_string_value(const struct value_string *vs, const char *str);
16
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020017char osmo_bcd2char(uint8_t bcd);
Harald Weltea73e2f92010-03-04 10:50:32 +010018/* only works for numbers in ascci */
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020019uint8_t osmo_char2bcd(char c);
Harald Welted284cd92010-03-01 21:58:31 +010020
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020021int osmo_hexparse(const char *str, uint8_t *b, int max_len);
22char *osmo_hexdump(const unsigned char *buf, int len);
23char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len);
24char *osmo_ubit_dump(const uint8_t *bits, unsigned int len);
Harald Welte3eba9912010-07-30 10:37:29 +020025
Pablo Neira Ayuso87f7b252011-05-07 12:43:08 +020026#define osmo_static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
Holger Hans Peter Freyther52c07ca2011-01-16 17:37:27 +010027
Harald Welte28222962011-02-18 20:37:04 +010028void osmo_str2lower(char *out, const char *in);
29void osmo_str2upper(char *out, const char *in);
30
Pablo Neira Ayuso3abad6a2011-03-28 19:24:22 +020031#define OSMO_SNPRINTF_RET(ret, rem, offset, len) \
32do { \
33 len += ret; \
34 if (ret > rem) \
35 ret = rem; \
36 offset += ret; \
37 rem -= ret; \
38} while (0)
39
Harald Welteec8b4502010-02-20 20:34:29 +010040#endif