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))
|
|
|
|
|
2009-09-13 17:36:35 +00:00
|
|
|
extern void cgit_ssdiff_print_deferred_lines();
|
|
|
|
|
|
|
|
extern void cgit_ssdiff_line_cb(char *line, int len);
|
|
|
|
|
2009-09-15 17:44:37 +00:00
|
|
|
extern void cgit_ssdiff_header_begin();
|
|
|
|
extern void cgit_ssdiff_header_end();
|
2009-09-13 17:36:35 +00:00
|
|
|
|
|
|
|
extern void cgit_ssdiff_footer();
|
|
|
|
|
|
|
|
#endif /* UI_SSDIFF_H */
|