]>
Commit | Line | Data |
---|---|---|
1 | #ifndef _OVERONION_REVERSE_LIB_H | |
2 | #define _OVERONION_REVERSE_LIB_H | |
3 | ||
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); | |
7 | ||
8 | #endif /* _OVERONION_REVERSE_LIB_H */ |