all repos — mgba @ e89a705419389c4b308af3d6b1c7616c34a37038

mGBA Game Boy Advance Emulator

src/debugger/cli-debugger.h (view raw)

 1#ifndef CLI_DEBUGGER_H
 2#define CLI_DEBUGGER_H
 3
 4#include "common.h"
 5
 6#include "debugger.h"
 7
 8#include <histedit.h>
 9
10struct CLIDebugger {
11	struct ARMDebugger d;
12
13	EditLine* elstate;
14	History* histate;
15};
16
17void CLIDebuggerCreate(struct CLIDebugger*);
18
19#endif