mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-22 00:05:38 +00:00
14 lines
316 B
C
14 lines
316 B
C
|
#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
|