From 40481e895453c53d71f2f254b931b77c830c9e0a Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 30 Jul 2010 11:40:32 +0200 Subject: move hexdump() from logging.c to utils.c --- include/osmocore/logging.h | 1 - include/osmocore/utils.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/osmocore/logging.h b/include/osmocore/logging.h index 2e82959a..7bf24403 100644 --- a/include/osmocore/logging.h +++ b/include/osmocore/logging.h @@ -21,7 +21,6 @@ #define static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1]; -char *hexdump(const unsigned char *buf, int len); void logp(unsigned int subsys, char *file, int line, int cont, const char *format, ...) __attribute__ ((format (printf, 5, 6))); /* new logging interface */ diff --git a/include/osmocore/utils.h b/include/osmocore/utils.h index c5b95bd3..07af1802 100644 --- a/include/osmocore/utils.h +++ b/include/osmocore/utils.h @@ -18,5 +18,6 @@ char bcd2char(uint8_t bcd); uint8_t char2bcd(char c); int hexparse(const char *str, uint8_t *b, int max_len); +char *hexdump(const unsigned char *buf, int len); #endif -- cgit v1.2.3