Revision 18cfb74f31209007e3a960efa594c25abd8a4cac authored by Junio C Hamano on 19 May 2019, 07:45:26 UTC, committed by Junio C Hamano on 19 May 2019, 07:45:26 UTC
Portability fix for a diff-highlight tool (in contrib/).

* cw/diff-highlight:
  diff-highlight: use correct /dev/null for UNIX and Windows
2 parent s 1294160 + 6804ba3
Raw File
sliding_window.h
#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
back to top