#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


syntax highlighted by Code2HTML, v. 0.9.1