Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobba <tobias.haegermarck@gmail.com>2016-12-21 18:51:47 +0300
committerTobba <tobias.haegermarck@gmail.com>2016-12-23 15:58:53 +0300
commit1e4f46c92ab221df63a893467a2eec7ff9fa3004 (patch)
treeb7f7de4f2e2ed333216bfad401e97b8af2d6bed0 /pb_decode.h
parent58af4d1fb733c5348b68dd3980f2a230d95400b4 (diff)
Make pb_decode_varint32 public API
Diffstat (limited to 'pb_decode.h')
-rw-r--r--pb_decode.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/pb_decode.h b/pb_decode.h
index 1d9bb19..e7eb209 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);