more checksum stuff

This commit is contained in:
Joe Thornber
2011-09-16 10:06:37 +01:00
parent 1f6f79782a
commit 478069c4ec
10 changed files with 114 additions and 13 deletions

14
hex_dump.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef HEX_DUMP_H
#define HEX_DUMP_H
#include <iosfwd>
//----------------------------------------------------------------
namespace base {
void hex_dump(std::ostream &out, void const *data, size_t len);
}
//----------------------------------------------------------------
#endif