home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / UPDATE.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  356b  |  21 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. ** UPDATE.H - Header for UPDATE.C
  5. */
  6.  
  7. #ifndef UPDATE__H
  8. #define UPDATE__H
  9.  
  10. #include <io.h>
  11. #include <stdio.h>
  12. #include <string.h>
  13. #include <stdlib.h>
  14. #include "sniptype.h"
  15.  
  16. Boolean_T update_file(char *szFname, char *szOther);
  17.  
  18. #define ren2bak(x) update_file(x, NULL)
  19.  
  20. #endif /* UPDATE__H */
  21.