]> git.scottworley.com Git - overonion/blame_incremental - reverse_lib.h
Switch to stdio for output. It's simpler
[overonion] / reverse_lib.h
... / ...
CommitLineData
1#ifndef _OVERONION_REVERSE_LIB_H
2#define _OVERONION_REVERSE_LIB_H
3
4#include <stdio.h>
5
6/* Copy the contents of input_filename to output_stream backwards.
7 * input_filename must be a real file, not a pipe. */
8void reverse_file(const char* input_filename, FILE* output_stream);
9
10#endif /* _OVERONION_REVERSE_LIB_H */