all repos — cgit @ aa25ff3c8b548077f2793c1162f3610af03e63df

a hyperfast web frontend for git written in c

ui-ssdiff.h (view raw)

 1#ifndef UI_SSDIFF_H
 2#define UI_SSDIFF_H
 3
 4/*
 5 * ssdiff line limits
 6 */
 7#ifndef MAX_SSDIFF_M
 8#define MAX_SSDIFF_M 128
 9#endif
10
11#ifndef MAX_SSDIFF_N
12#define MAX_SSDIFF_N 128
13#endif
14#define MAX_SSDIFF_SIZE ((MAX_SSDIFF_M) * (MAX_SSDIFF_N))
15
16extern void cgit_ssdiff_print_deferred_lines();
17
18extern void cgit_ssdiff_line_cb(char *line, int len);
19
20extern void cgit_ssdiff_header_begin();
21extern void cgit_ssdiff_header_end();
22
23extern void cgit_ssdiff_footer();
24
25#endif /* UI_SSDIFF_H */