This commit is contained in:
Carl-Benedikt Krüger 2011-06-27 12:52:23 +02:00
parent 4a66f0eb37
commit ce364a9a1a

View file

@ -1,6 +1,12 @@
#include "util.h"
__inline int isprint(char e)
{
if (e < 0x30 || e > 0x80)
return false;
}
// hex_dumb display network packets in a good way
void hex_dump(unsigned n, const unsigned char* buf)
{