make fmt_hexdump use lowercase letters

master
Felix von Leitner 2002-05-14 20:04:35 +00:00
parent 2fb545ac2d
commit ab208a02fa
1 changed files with 1 additions and 1 deletions

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) {