mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
6a209bdb59
Mostly \file and \brief tag added. Some fixes for warnings with existing comments. Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
16 lines
271 B
C
16 lines
271 B
C
|
|
/** \file
|
|
* \brief Header: editor file locking
|
|
* \author Adam Byrtek
|
|
* \date 2003
|
|
* Look at editlock.c for more details
|
|
*/
|
|
|
|
#ifndef MC_EDIT_LOCK_H
|
|
#define MC_EDIT_LOCK_H
|
|
|
|
int edit_lock_file (const char *fname);
|
|
int edit_unlock_file (const char *fname);
|
|
|
|
#endif
|