mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
13 lines
196 B
C
13 lines
196 B
C
|
/**
|
||
|
* Author......: See docs/credits.txt
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#ifndef _DISPATCH_H
|
||
|
#define _DISPATCH_H
|
||
|
|
||
|
void *thread_calc_stdin (void *p);
|
||
|
void *thread_calc (void *p);
|
||
|
|
||
|
#endif // _DISPATCH_H
|