diff options
author | Harald Welte <laforge@gnumonks.org> | 2011-02-08 16:56:23 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2011-02-08 16:56:23 +0100 |
commit | b05552b14c8ac5918c9d88a568bdfc85cfe45755 (patch) | |
tree | 2b94a4d6537ab629828cb18f6df3f6566354bbc3 /include/osmocore | |
parent | 3d0ac5e446314c08f3e590bb4dd976b551bff618 (diff) |
[utils] introduce ubit_dump to dump buffers of unpacked bits
Diffstat (limited to 'include/osmocore')
-rw-r--r-- | include/osmocore/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocore/utils.h b/include/osmocore/utils.h index da4eb959..6fe1b388 100644 --- a/include/osmocore/utils.h +++ b/include/osmocore/utils.h @@ -20,7 +20,7 @@ uint8_t char2bcd(char c); int hexparse(const char *str, uint8_t *b, int max_len); char *hexdump(const unsigned char *buf, int len); char *hexdump_nospc(const unsigned char *buf, int len); -char *bitdump(const uint8_t *bits, unsigned int len); +char *ubit_dump(const uint8_t *bits, unsigned int len); #define static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1]; |