8f20879431
While doing this, remove declarations from header files where the corresponding definition is declared "static" in order to avoid build errors. Also re-order existing headers in ui-*.c so that the file-specific header always comes immediately after "cgit.h", helping with future consistency. Signed-off-by: John Keeping <john@keeping.me.uk>
16 baris
417 B
C
16 baris
417 B
C
#ifndef UI_DIFF_H
|
|
#define UI_DIFF_H
|
|
|
|
extern void cgit_print_diff_ctrls();
|
|
|
|
extern void cgit_print_diff(const char *new_hex, const char *old_hex,
|
|
const char *prefix, int show_ctrls);
|
|
|
|
extern struct diff_filespec *cgit_get_current_old_file(void);
|
|
extern struct diff_filespec *cgit_get_current_new_file(void);
|
|
|
|
extern unsigned char old_rev_sha1[20];
|
|
extern unsigned char new_rev_sha1[20];
|
|
|
|
#endif /* UI_DIFF_H */
|