mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 23:10:00 +00:00
24 lines
435 B
C
24 lines
435 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _DATA_H
|
|
#define _DATA_H
|
|
|
|
#define global_free(attr) \
|
|
{ \
|
|
myfree ((void *) data.attr); \
|
|
\
|
|
data.attr = NULL; \
|
|
}
|
|
|
|
#define local_free(attr) \
|
|
{ \
|
|
myfree ((void *) attr); \
|
|
\
|
|
attr = NULL; \
|
|
}
|
|
|
|
#endif // _DATA_H
|