diff options
author | Peter Simons <simons@cryp.to> | 2009-07-21 15:22:24 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-07-22 15:16:35 +0200 |
commit | e89d33fe93612a3e0024c5d2d3751c3f722de939 (patch) | |
tree | 30ec20500d92b9db5bec10fef5a5b2c81047706b /lib/sha1.h | |
parent | abc4e3f768914ecc82270adfccef5f3f7777ea98 (diff) | |
download | gnulib-e89d33fe93612a3e0024c5d2d3751c3f722de939.tar.gz |
C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
* lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
* lib/md4.h: Likewise.
* lib/md5.h: Likewise.
* lib/sha1.h: Likewise.
* lib/sha256.h: Likewise.
* lib/sha512.h: Likewise.
Diffstat (limited to 'lib/sha1.h')
-rw-r--r-- | lib/sha1.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/sha1.h b/lib/sha1.h index 4ffda7a994..93babd2eed 100644 --- a/lib/sha1.h +++ b/lib/sha1.h @@ -23,6 +23,10 @@ # include <stdio.h> # include <stdint.h> +# ifdef __cplusplus +extern "C" { +# endif + #define SHA1_DIGEST_SIZE 20 /* Structure to save state of computation between the single steps. */ @@ -81,4 +85,8 @@ extern int sha1_stream (FILE *stream, void *resblock); digest. */ extern void *sha1_buffer (const char *buffer, size_t len, void *resblock); +# ifdef __cplusplus +} +# endif + #endif |