file_io.h   file_io.h 
skipping to change at line 67 skipping to change at line 67
struct stat src_st; struct stat src_st;
/// Stat of the destination file. /// Stat of the destination file.
struct stat dest_st; struct stat dest_st;
} file_pair; } file_pair;
/// \brief Initialize the I/O module /// \brief Initialize the I/O module
extern void io_init(void); extern void io_init(void);
#ifndef TUKLIB_DOSLIKE
/// \brief Write a byte to user_abort_pipe[1]
///
/// This is called from a signal handler.
extern void io_write_to_user_abort_pipe(void);
#endif
/// \brief Disable creation of sparse files when decompressing /// \brief Disable creation of sparse files when decompressing
extern void io_no_sparse(void); extern void io_no_sparse(void);
/// \brief Open the source file /// \brief Open the source file
extern file_pair *io_open_src(const char *src_name); extern file_pair *io_open_src(const char *src_name);
/// \brief Open the destination file /// \brief Open the destination file
extern bool io_open_dest(file_pair *pair); extern bool io_open_dest(file_pair *pair);
/// \brief Closes the file descriptors and frees possible allocated me mory /// \brief Closes the file descriptors and frees possible allocated me mory
 End of changes. 1 change blocks. 
0 lines changed or deleted 7 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/