mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
20 lines
303 B
C
20 lines
303 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _LOCKING_H
|
|
#define _LOCKING_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
|
|
int lock_file (FILE *fp);
|
|
int unlock_file (FILE *fp);
|
|
|
|
#endif // _LOCKING_H
|