mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-12 00:06:26 +00:00
36 lines
602 B
C
36 lines
602 B
C
/*
|
|
| util.h from Lsyncd - Live (Mirror) Syncing Demon
|
|
|
|
|
|
|
|
| Small in Lsyncd commonly used utils.
|
|
|
|
|
|
|
|
| License: GPLv2 (see COPYING) or any later version
|
|
| Authors: Axel Kittenberger <axkibe@gmail.com>
|
|
*/
|
|
#ifndef LSYNCD_UTIL_H
|
|
#define LSYNCD_UTIL_H
|
|
|
|
|
|
/*
|
|
| Returns the absolute path of a path.
|
|
|
|
|
| This is a wrapper to various C-Library differences.
|
|
*/
|
|
extern char * get_realpath( char const * rpath );
|
|
|
|
|
|
/*
|
|
| Sets the non-blocking flag on a file descriptor.
|
|
*/
|
|
extern void non_block_fd( int fd );
|
|
|
|
|
|
/*
|
|
| Sets the close-on-exit flag on a file descriptor.
|
|
*/
|
|
extern void close_exec_fd( int fd );
|
|
|
|
|
|
#endif
|