mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
18 lines
510 B
C
18 lines
510 B
C
|
#pragma once
|
||
|
#include <fnd/types.h>
|
||
|
|
||
|
namespace fnd
|
||
|
{
|
||
|
class SimpleTextOutput
|
||
|
{
|
||
|
public:
|
||
|
static void hxdStyleDump(const byte_t* data, size_t len, size_t row_len, size_t byte_grouping_size);
|
||
|
static void hxdStyleDump(const byte_t* data, size_t len);
|
||
|
static void hexDump(const byte_t* data, size_t len, size_t row_len, size_t indent_len);
|
||
|
static void hexDump(const byte_t* data, size_t len);
|
||
|
private:
|
||
|
static const size_t kDefaultRowLen = 0x10;
|
||
|
static const size_t kDefaultByteGroupingSize = 1;
|
||
|
};
|
||
|
|
||
|
}
|