mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 22:25:42 +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
|