mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 21:35:28 +00:00
14 lines
255 B
C
14 lines
255 B
C
|
#ifndef CRASH_HANDLER_H
|
||
|
#define CRASH_HANDLER_H
|
||
|
|
||
|
/**
|
||
|
* @fn void initCrashHandler()
|
||
|
*
|
||
|
* If CUTTER_ENABLE_CRASH_REPORTS is true, initializes
|
||
|
* crash handling and reporting, otherwise does nothing.
|
||
|
*/
|
||
|
void initCrashHandler();
|
||
|
|
||
|
|
||
|
#endif // CRASH_HANDLER_H
|