mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-06 16:20:58 +00:00
16 lines
269 B
C
16 lines
269 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2023, Jesús Lapastora <cyber.gsuscode@gmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/Span.h>
|
||
|
|
|
||
|
|
namespace JIT::GDB {
|
||
|
|
|
||
|
|
void register_into_gdb(ReadonlyBytes data);
|
||
|
|
void unregister_from_gdb(ReadonlyBytes data);
|
||
|
|
}
|