mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
14 lines
237 B
C
14 lines
237 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _SESSION_H
|
|
#define _SESSION_H
|
|
|
|
void session_ctx_init (session_ctx_t *session_ctx);
|
|
|
|
void session_ctx_destroy (session_ctx_t *session_ctx);
|
|
|
|
#endif // _SESSION_H
|