home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / DIR / MFD_1_00.ZIP / cmp.h < prev    next >
Encoding:
Text File  |  1991-08-18  |  354 b   |  18 lines

  1. /*
  2.  * cmp.h
  3.  *
  4.  * prototypes for cmp.c, file comparison and auxiliary memory allocation
  5.  * functions.
  6.  *
  7.  * Roy Bixler
  8.  * Monk Software
  9.  * March 16, 1991
  10.  */
  11.  
  12.  
  13.  
  14. /* cmp.c */
  15. unsigned int alloc_file_buffers(char **buf1, char **buf2, long file_size);
  16. int do_compare_files(int file1, int file2);
  17. int compare_files(char *file1, char *file2);
  18.