MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at mir/inline-method 13 lines 280 B view raw
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