gdb-server/include/server.h

11 lines
222 B
C
Raw Normal View History

2024-10-08 02:00:01 +00:00
#ifndef RDBSERVER_SERVER_H_
#define RDBSERVER_SERVER_H_
#include <client.h>
#include <cmdbuf.h>
#include <stdbool.h>
#include <vb.h>
int handle_command(RdbClient *client, CommandBuf *cmd, VB *sim, bool *running);
#endif