base64: Use extern C scope in header file, for C++.
authorSimon Josefsson <simon@josefsson.org>
Thu, 2 Aug 2012 21:21:02 +0000 (23:21 +0200)
committerSimon Josefsson <simon@josefsson.org>
Thu, 2 Aug 2012 21:21:02 +0000 (23:21 +0200)
* lib/base64.h: Add C++ namespace protection.

ChangeLog
lib/base64.h

index 62bb873..425c02d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-08-02  Carlo de Falco  <carlo.defalco@polimi.it>  (tiny change)
+
+       base64: Use extern C scope in header file, for C++.
+       * lib/base64.h: Add C++ namespace protection.
+
 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
 
        stat-time, timespec, u64: support naive out-of-dir builds
index e125d7e..fc7307a 100644 (file)
 /* Get bool. */
 # include <stdbool.h>
 
+# ifdef __cplusplus
+extern "C" {
+# endif
+
 /* This uses that the expression (n+(k-1))/k means the smallest
    integer >= n/k, i.e., the ceiling of n/k.  */
 # define BASE64_LENGTH(inlen) ((((inlen) + 2) / 3) * 4)
@@ -57,4 +61,8 @@ extern bool base64_decode_alloc_ctx (struct base64_decode_context *ctx,
 #define base64_decode_alloc(in, inlen, out, outlen) \
         base64_decode_alloc_ctx (NULL, in, inlen, out, outlen)
 
+# ifdef __cplusplus
+}
+# endif
+
 #endif /* BASE64_H */