blob: 7e487e883a1056c5658dbc053113733369fc3481 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include "garnet/lib/debug_ipc/records.h"
namespace debug_ipc {
// Collection of utilities functions and classes for dealing with records.
// AddressRange ----------------------------------------------------------------
bool Equals(const AddressRange&, const AddressRange&);
std::string AddressRangeToString(const AddressRange&);
// Used only for testing, collisions are bound to be very unlikely.
struct AddressRangeCompare {
bool operator()(const AddressRange &, const AddressRange &) const;
};
} // namespace debug_ipc