mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
b2ee413f03
Renamed and moved src/editor/editloc.[ch] -> lib/lock.[ch]. Renamed lock handling functions. Fixed library order in src/Makefile.am. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
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 */
|