make fmt_hexdump use lowercase letters

This commit is contained in:
leitner 2002-05-14 20:04:35 +00:00
parent 58334b0ea2
commit c536d87493

View File

@ -4,7 +4,7 @@
#include "haveinline.h"
static inline int tohex(char c) {
return c>9?c-10+'A':c+'0';
return c>9?c-10+'a':c+'0';
}
unsigned int fmt_hexdump(char* dest,const char* src,unsigned int len) {