11 lines
193 B
C
11 lines
193 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "exit.h"
|
|
|
|
const char cmd_exit_help[] = "Bla bla.";
|
|
|
|
int cmd_exit(jtag_core *jc, int argc, char **argv) {
|
|
jtagcore_deinit(jc);
|
|
exit(0);
|
|
} |