Files
bs_explorer/bs/init.h
2025-02-16 19:32:01 +01:00

17 lines
278 B
C

#ifndef _BS_INIT_H
#define _BS_INIT_H
#include "jtag_core/jtag_core.h"
typedef int (*command_call)(jtag_core *jc, int argc, char *argv[]);
typedef struct {
char *name;
command_call cmd_call;
} Command;
extern Command commands[];
jtag_core *bsexp_init(void);
#endif