From ebea5a12f9e72a552e22487777681b3e9c8c2de8 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Fri, 21 Dec 2007 02:21:44 +0000 Subject: [PATCH] Disuse of hexdump. --- hexdump.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hexdump.h b/hexdump.h index f72a473..9b2cadf 100644 --- a/hexdump.h +++ b/hexdump.h @@ -40,11 +40,11 @@ #include "minimal/stdlib.h" -char hexchar(uint8_t value) { +_disused static char hexchar(uint8_t value) { return value < 0x20 || value >= 0x80 ? '.' : value; } -void hexdump(const char *mark, const uint8_t *data, size_t size) { +_disused static void hexdump(const char *mark, const uint8_t *data, size_t size) { int i = 0, j; while (i != size) { -- 2.45.2