2009-09-13 17:36:35 +00:00
|
|
|
#ifndef UI_SSDIFF_H
|
|
|
|
#define UI_SSDIFF_H
|
|
|
|
|
2011-09-17 22:25:01 +00:00
|
|
|
/*
|
|
|
|
* ssdiff line limits
|
|
|
|
*/
|
|
|
|
#ifndef MAX_SSDIFF_M
|
|
|
|
#define MAX_SSDIFF_M 128
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX_SSDIFF_N
|
|
|
|
#define MAX_SSDIFF_N 128
|
|
|
|
#endif
|
|
|
|
#define MAX_SSDIFF_SIZE ((MAX_SSDIFF_M) * (MAX_SSDIFF_N))
|
|
|
|
|
2016-01-13 22:25:07 +00:00
|
|
|
extern void cgit_ssdiff_print_deferred_lines(void);
|
2009-09-13 17:36:35 +00:00
|
|
|
|
|
|
|
extern void cgit_ssdiff_line_cb(char *line, int len);
|
|
|
|
|
2016-01-13 22:25:07 +00:00
|
|
|
extern void cgit_ssdiff_header_begin(void);
|
|
|
|
extern void cgit_ssdiff_header_end(void);
|
2009-09-13 17:36:35 +00:00
|
|
|
|
2016-01-13 22:25:07 +00:00
|
|
|
extern void cgit_ssdiff_footer(void);
|
2009-09-13 17:36:35 +00:00
|
|
|
|
|
|
|
#endif /* UI_SSDIFF_H */
|