1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-03-22 07:42:54 +03:00

16 lines
256 B
C
Raw Normal View History

/** \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 */