Core: Implement GDB protocol
This commit is contained in:
committed by
Connor McLaughlin
parent
9b40c8ffa6
commit
abd2399aaf
13
src/core/gdb_protocol.h
Normal file
13
src/core/gdb_protocol.h
Normal file
@ -0,0 +1,13 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user