diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-12-31 10:42:59 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-12-31 10:42:59 +0200 |
commit | afdbca39edfaef58073f661d23300e1133c4e8af (patch) | |
tree | b01dd4fa954302c2baa1304e1d8de1a59fb47293 /pb_decode.h | |
parent | 48f5dd83530a46dd2423277f4488fd4ce9c93b72 (diff) | |
parent | af848f61abff7d1ef972a140fc72eeeb2ed00e2e (diff) |
Merge branch 'master' of github.com:nanopb/nanopb
Diffstat (limited to 'pb_decode.h')
-rw-r--r-- | pb_decode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pb_decode.h b/pb_decode.h index 1d9bb194..e7eb209c 100644 --- a/pb_decode.h +++ b/pb_decode.h @@ -126,6 +126,10 @@ bool pb_skip_field(pb_istream_t *stream, pb_wire_type_t wire_type); * int64, uint32 and uint64 field types. */ bool pb_decode_varint(pb_istream_t *stream, uint64_t *dest); +/* Decode an integer in the varint format. This works for bool, enum, int32, + * and uint32 field types. */ +bool pb_decode_varint32(pb_istream_t *stream, uint32_t *dest); + /* Decode an integer in the zig-zagged svarint format. This works for sint32 * and sint64. */ bool pb_decode_svarint(pb_istream_t *stream, int64_t *dest); |