mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-12-04 19:45:41 +00:00
8c7a192128
Should've did this in the beginning.
17 lines
467 B
C++
17 lines
467 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com> and contributors.
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include <string_view>
|
|
|
|
namespace GDBProtocol
|
|
{
|
|
|
|
bool IsPacketInterrupt(const std::string_view& data);
|
|
bool IsPacketContinue(const std::string_view& data);
|
|
|
|
bool IsPacketComplete(const std::string_view& data);
|
|
std::string ProcessPacket(const std::string_view& data);
|
|
|
|
} // namespace GDBProtocol
|