editlock.h 271 B

123456789101112131415
  1. /** \file
  2. * \brief Header: editor file locking
  3. * \author Adam Byrtek
  4. * \date 2003
  5. * Look at editlock.c for more details
  6. */
  7. #ifndef MC_EDIT_LOCK_H
  8. #define MC_EDIT_LOCK_H
  9. int edit_lock_file (const char *fname);
  10. int edit_unlock_file (const char *fname);
  11. #endif