mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
16 lines
256 B
C
16 lines
256 B
C
|
|
||
|
/** \file
|
||
|
* \brief Header: file locking
|
||
|
* \author Adam Byrtek
|
||
|
* \date 2003
|
||
|
* Look at lock.c for more details
|
||
|
*/
|
||
|
|
||
|
#ifndef MC_LOCK_H
|
||
|
#define MC_LOCK_H
|
||
|
|
||
|
int lock_file (const char *fname);
|
||
|
int unlock_file (const char *fname);
|
||
|
|
||
|
#endif /* MC_LOCK_H */
|