/****************************************************************************** * Module : Utility Functions --- Function prototypes. * * Author : John W. M. Stevens ******************************************************************************/ #if ! defined(UTILITY_HEADER_FILE) #define UTILITY_HEADER_FILE /* Function prototypes. */ extern unsigned long HexToUL(char *Str); extern char *StrDup(char *Str); extern int FileExists(char *FlName); extern void MemCopy(void *Dest, void *Source, int NoBytes); extern void MemMv(void *Dest, void *Source, int NoBytes); #endif