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