thin-provisioning-tools/hex_dump.h

15 lines
286 B
C
Raw Normal View History

2011-09-16 14:36:37 +05:30
#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