home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * Module : Utility Functions --- Function prototypes.
- *
- * Author : John W. M. Stevens
- ******************************************************************************/
-
- #if ! defined(UTILITY_HEADER_FILE)
- #define UTILITY_HEADER_FILE
-
- /* Function prototypes. */
- extern
- char *StrDup(char *Str);
- extern
- int FileExists(char *FlName);
- extern
- void MemCopy(void *Dest,
- void *Source,
- int NoBytes);
- extern
- void MemMove(void *Dest,
- void *Source,
- int NoBytes);
-
- #endif
-