From f4dcdc9a1ee5971bfda6acf079d615a6f40382b1 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 11 Jan 2011 18:51:20 +0100 Subject: do not pollute library namespace: prefix bin2hex and hex2bin with abrt_ Signed-off-by: Denys Vlasenko --- src/include/abrtlib.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/include') diff --git a/src/include/abrtlib.h b/src/include/abrtlib.h index 2e23805a..9f428486 100644 --- a/src/include/abrtlib.h +++ b/src/include/abrtlib.h @@ -234,8 +234,10 @@ double get_dirsize_find_largest_dir( ); /* Emit a string of hex representation of bytes */ +#define bin2hex abrt_bin2hex char* bin2hex(char *dst, const char *str, int count); /* Convert "xxxxxxxx" hex string to binary, no more than COUNT bytes */ +#define hex2bin abrt_hex2bin char* hex2bin(char *dst, const char *str, int count); /* Returns command line of running program. -- cgit