7ef0d62730
Merge commit '1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5' as 'third_party/git'
18 lines
367 B
C
18 lines
367 B
C
#ifndef SLIDING_WINDOW_H
|
|
#define SLIDING_WINDOW_H
|
|
|
|
#include "strbuf.h"
|
|
|
|
struct sliding_view {
|
|
struct line_buffer *file;
|
|
off_t off;
|
|
size_t width;
|
|
off_t max_off; /* -1 means unlimited */
|
|
struct strbuf buf;
|
|
};
|
|
|
|
#define SLIDING_VIEW_INIT(input, len) { (input), 0, 0, (len), STRBUF_INIT }
|
|
|
|
int move_window(struct sliding_view *view, off_t off, size_t width);
|
|
|
|
#endif
|