diff options
Diffstat (limited to 'pb_decode.h')
-rw-r--r-- | pb_decode.h | 8 |
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 |