versadac  1
versadac - Scalable Recorder Firmware
md5Util.h
1 /*******************************************************************************
2 FILE : md5Util.h
3 VERSION : $Id$
4 AUTHOR : David Cozens
5 SYSTEM : vxWorks
6 DESCRIPTION : Utility functions for working with md5 checksums
7 *******************************************************************************/
8 
9 #ifdef __cplusplus
10 extern "C"
11 {
12 #endif
13 int checkMd5( char* filename, char *md5);
14 int checkFileMd5( char* filename);
15 int copyFileMd5( char* source, char* dest, int overwrite);
16 #ifdef __cplusplus
17 } /* end of extern "C" */
18 #endif