home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume36 / unpost / part07 / utils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-18  |  657 b   |  25 lines

  1. /******************************************************************************
  2. * Module    :   Utility Functions --- Function prototypes.
  3. *
  4. * Author    :   John W. M. Stevens
  5. ******************************************************************************/
  6.  
  7. #if ! defined(UTILITY_HEADER_FILE)
  8. #define     UTILITY_HEADER_FILE
  9.  
  10. /*  Function prototypes.    */
  11. extern
  12. char    *StrDup(char    *Str);
  13. extern
  14. int     FileExists(char     *FlName);
  15. extern
  16. void    MemCopy(void    *Dest,
  17.                 void    *Source,
  18.                 int     NoBytes);
  19. extern
  20. void    MemMove(void    *Dest,
  21.                 void    *Source,
  22.                 int     NoBytes);
  23.  
  24. #endif
  25.