summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-01-11 18:51:20 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2011-01-11 18:51:20 +0100
commitf4dcdc9a1ee5971bfda6acf079d615a6f40382b1 (patch)
tree7d655252532f58cfd6a2ef917ff2d9443a5692da /src/include
parentc4bdeaeb27855878c6caadaa6b85fa566bc09677 (diff)
downloadabrt-f4dcdc9a1ee5971bfda6acf079d615a6f40382b1.tar.gz
abrt-f4dcdc9a1ee5971bfda6acf079d615a6f40382b1.tar.xz
abrt-f4dcdc9a1ee5971bfda6acf079d615a6f40382b1.zip
do not pollute library namespace: prefix bin2hex and hex2bin with abrt_
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/abrtlib.h2
1 files changed, 2 insertions, 0 deletions
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.