1#ifndef ANT_CRASH_H
2#define ANT_CRASH_H
3
4#include <stdbool.h>
5#include "types.h"
6
7void ant_crash_init(int argc, char **argv);
8void ant_crash_suppress_reporting(void);
9
10int ant_crash_run_internal_report(ant_t *js);
11bool ant_crash_is_internal_report(int argc, char **argv);
12
13#endif