mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-03-06 14:27:44 +00:00
14 lines
429 B
C++
14 lines
429 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(std::string_view data);
|
|
bool IsPacketContinue(std::string_view data);
|
|
|
|
bool IsPacketComplete(std::string_view data);
|
|
std::string ProcessPacket(std::string_view data);
|
|
} // namespace GDBProtocol
|