mirror of
https://github.com/hashcat/hashcat.git
synced 2024-10-31 20:48:57 +00:00
14 lines
219 B
C
14 lines
219 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _MONITOR_H
|
|
#define _MONITOR_H
|
|
|
|
int get_runtime_left (const hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void *thread_monitor (void *p);
|
|
|
|
#endif // _MONITOR_H
|