gdb-server/include/server.h

11 lines
223 B
C

#ifndef RDBSERVER_SERVER_H_
#define RDBSERVER_SERVER_H_
#include <cmdbuf.h>
#include <response.h>
#include <stdbool.h>
#include <vb.h>
int handle_command(RdbResponse *res, CommandBuf *cmd, VB *sim, bool *running);
#endif