blob: 901595a60617d31be40658481d1d9b1a3c1cfa9f [file] [log] [blame]
// Copyright 2012 Cloudera, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef KUDU_UTIL_HEXDUMP_H
#define KUDU_UTIL_HEXDUMP_H
#include <string>
namespace kudu {
class Slice;
// Generate an 'xxd'-style hexdump of the given slice.
// This should only be used for debugging, as the format is
// subject to change and it has not been implemented for
// speed.
std::string HexDump(const Slice &slice);
} // namespace kudu
#endif