]>
git.scottworley.com Git - overonion/blob - reverse_lib.h
1 #ifndef _OVERONION_REVERSE_LIB_H
2 #define _OVERONION_REVERSE_LIB_H
4 /* Copy the contents of input_filename to output_fd backwards.
5 * input_filename must be a real file, not a pipe. */
6 void reverse_file(const char* input_filename
, int output_fd
);
8 #endif /* _OVERONION_REVERSE_LIB_H */