b279f097601548fd9a144ffc20642979fb75db91
kent
  Tue Mar 26 21:50:57 2013 -0700
Making function that puts an md5sum file into a hash.
diff --git src/inc/md5.h src/inc/md5.h
index ec36d3c..3e08234 100644
--- src/inc/md5.h
+++ src/inc/md5.h
@@ -15,18 +15,21 @@
 void md5_starts( struct md5_context *ctx );
 void md5_update( struct md5_context *ctx, uint8 *input, uint32 length );
 void md5_finish( struct md5_context *ctx, uint8 digest[16] );
 
 #define MD5READBUFSIZE 256 * 1024
 
 void md5ForFile(char * fileName, unsigned char md5[16]);
 /* read f in buffer pieces and update md5 hash */
 
 char *md5ToHex(unsigned char md5[16]);
 /* return md5 as hex string */
 
 char *md5HexForFile(char * fileName);
 /* read f in buffer pieces and return hex string for md5sum */
 
+struct hash *md5FileHash(char *fileName);
+/* Read md5sum file and return a hash keyed by file names with md5sum values. */
+
 #endif /* MD5_H */