/* diffs.h: * **************************************************************** * Copyright (C) 2003 Tom Lord * * See the file "COPYING" for further information about * the copyright and warranty status of this work. */ #ifndef INCLUDE__LIBFSUTILS__DIFFS_H #define INCLUDE__LIBFSUTILS__DIFFS_H #include "hackerlab/machine/types.h" #include "libawk/associative.h" /* automatically generated __STDC__ prototypes */ extern int arch_binary_files_differ (t_uchar * a, t_uchar * b, t_uchar * id, assoc_table inode_sig_shortcuts_of_b); extern int arch_file_stats_differ (struct stat *a_stat, struct stat *b_stat); extern int arch_inode_sigs_differ (struct stat *b_stat, t_uchar *id, assoc_table inode_sig_shortcuts_of_b); extern int arch_file_contents_differ (int a_fd, int b_fd); extern int arch_filename_contents_differ (t_uchar * a, t_uchar * b); extern int arch_invoke_diff (int output_fd, char * orig_path, char * orig_loc, char * mod_path, char * mod_loc, t_uchar * id, assoc_table inode_sig_shortcuts_of_mod); extern int arch_really_invoke_diff (int output_fd, char * orig_path, char * orig_loc, char * mod_path, char * mod_loc, char ** extraopts); extern int arch_symlinks_differ (t_uchar * orig_path, t_uchar * mod_path); #endif /* INCLUDE__LIBFSUTILS__DIFFS_H */ /* tag: Tom Lord Sat Jan 5 15:26:10 2002 (diffs.h) */