aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index f79b69365..f0f54ef82 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -814,9 +814,9 @@ void smart_ulltoa5(unsigned long long ul, char buf[5], const char *scale) FAST_F
814const char *make_human_readable_str(unsigned long long size, 814const char *make_human_readable_str(unsigned long long size,
815 unsigned long block_size, unsigned long display_unit) FAST_FUNC; 815 unsigned long block_size, unsigned long display_unit) FAST_FUNC;
816/* Put a string of hex bytes ("1b2e66fe"...), return advanced pointer */ 816/* Put a string of hex bytes ("1b2e66fe"...), return advanced pointer */
817char *bin2hex(char *buf, const char *cp, int count) FAST_FUNC; 817char *bin2hex(char *dst, const char *src, int count) FAST_FUNC;
818/* Reverse */ 818/* Reverse */
819char* hex2bin(char *dst, const char *str, int count) FAST_FUNC; 819char* hex2bin(char *dst, const char *src, int count) FAST_FUNC;
820 820
821/* Generate a UUID */ 821/* Generate a UUID */
822void generate_uuid(uint8_t *buf) FAST_FUNC; 822void generate_uuid(uint8_t *buf) FAST_FUNC;