Files
mc-old/lib/lock.h
Yury V. Zaytsev 8406bddbd4 formatting: step 6 - manual tweaks
* Reformat tests with magic comma
* Remove macro guards causing unstable formatting

```
find . -type file -name '*.[ch]' | xargs sed -i '' -E 's|# *endif.+//.+$|#endif|g'
```

Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
2025-02-02 19:38:47 +01:00

30 lines
911 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
#include "lib/vfs/vfs.h" // vfs_path_t
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
int lock_file (const vfs_path_t *fname_vpath);
int unlock_file (const vfs_path_t *fname_vpath);
/*** inline functions ****************************************************************************/
#endif