#ifndef FILE_LOCK_H #define FILE_LOCK_H void file_lock_init(void); int file_trylock(int fd); int file_lock(int fd); int file_unlock(int fd); #endif