diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-11-03 18:04:43 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-11-03 18:04:43 (GMT) |
commit | bfaab3acda7ec81a51a45372673f5be07745773b (patch) | |
tree | 3d4fa775ba4ee12135f2ca20f59e2cb07f3efdf1 /libmd5 | |
parent | d5102e6fcbe7c5dcf5b285d39aaa33b85bf34314 (diff) | |
download | Doxygen-bfaab3acda7ec81a51a45372673f5be07745773b.zip Doxygen-bfaab3acda7ec81a51a45372673f5be07745773b.tar.gz Doxygen-bfaab3acda7ec81a51a45372673f5be07745773b.tar.bz2 |
Release-1.3.4-20031103
Diffstat (limited to 'libmd5')
-rw-r--r-- | libmd5/md5_loc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libmd5/md5_loc.h b/libmd5/md5_loc.h index 03aeebf..3d6e2b6 100644 --- a/libmd5/md5_loc.h +++ b/libmd5/md5_loc.h @@ -30,6 +30,10 @@ #ifndef __MD5_LOC_H__ #define __MD5_LOC_H__ +#ifdef __cplusplus +extern "C" { +#endif + #define HEX_STRING "0123456789abcdef" /* to convert to hex */ #define BLOCK_SIZE_MASK (MD5_BLOCK_SIZE - 1) @@ -103,4 +107,8 @@ a += b; \ } while (0) +#ifdef __cplusplus +} +#endif + #endif /* ! __MD5_LOC_H__ */ |