summaryrefslogtreecommitdiffstats
path: root/pb_decode.h
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-10-29 19:03:19 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-10-29 19:03:19 +0200
commit3aaa4ad8c290af87d9bb9e24447f9cd6f9a79eab (patch)
tree98a5f06be5c64a9c6199cd842064400d8e5e6d9e /pb_decode.h
parentdb1eefc24bd9d1181dee35683c5fe12329f7d969 (diff)
Add extern "C" to header files.
Update issue 35 Status: FixedInGit
Diffstat (limited to 'pb_decode.h')
-rw-r--r--pb_decode.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/pb_decode.h b/pb_decode.h
index 2be92050..e9f8ced8 100644
--- a/pb_decode.h
+++ b/pb_decode.h
@@ -12,6 +12,10 @@
#include <stdbool.h>
#include "pb.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* Lightweight input stream.
* You can provide a callback function for reading or use
* pb_istream_from_buffer.
@@ -102,4 +106,8 @@ bool pb_skip_varint(pb_istream_t *stream);
bool pb_skip_string(pb_istream_t *stream);
#endif
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
#endif