all repos — mgba @ 6672aebfe46c2ce8fa61f1ad9919e0ea570b3a9d

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