home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 270_01 / summary.txt < prev    next >
Text File  |  1979-12-31  |  1KB  |  32 lines

  1. I am submitting the following three programs to the public domain in care
  2. of the C users group:
  3.  
  4.     DIFF.EXE    A file differencer program roughly patterned
  5.             after the UNIX utility of the same name.  It
  6.             has UNIX-style output, and uses an interesting
  7.             differencing algorithm, the "recursive longest
  8.             matching sequence" algorithm.
  9.  
  10.     DELTA.EXE    A variation of the DIFF utility which generates
  11.             files suitable for passing to the UNIX editor 'ed'
  12.             to generate a new file based on an existing file
  13.             and a delta file.  It can be used to effect a very
  14.             primitive source code control system, or as a basis
  15.             for developing a full-featured SCCS.
  16.  
  17.     APPLY.EXE    A utility which will apply a delta created using 
  18.             DELTA.EXE to a source file.  This effectively mimics
  19.             the operation of UNIX ed's script editing.
  20.  
  21.  
  22. These utilities were all developed under Microsoft OS/2 version 1.0 and 1.1,
  23. using the MS C version 5.1 compiler.  They use no OS/2 specific calls, and
  24. should be portable to any ANSI standard compiler (and probably even a straight
  25. K & R compiler with slight modification).
  26.  
  27. A note to OS/2 users:
  28.  
  29.     These routines use only family API calls, and therfore can be bound
  30.     (using the MS BIND utility) to run under MS-DOS 3.X as well as
  31.     MS-OS/2 1.X.
  32.