Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nanopb
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
le
nanopb
Commits
1e4f46c9
Commit
1e4f46c9
authored
8 years ago
by
Tobba
Browse files
Options
Downloads
Patches
Plain Diff
Make pb_decode_varint32 public API
parent
58af4d1f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pb_decode.c
+1
-2
1 addition, 2 deletions
pb_decode.c
pb_decode.h
+4
-0
4 additions, 0 deletions
pb_decode.h
with
5 additions
and
2 deletions
pb_decode.c
+
1
−
2
View file @
1e4f46c9
...
...
@@ -24,7 +24,6 @@
typedef
bool
(
*
pb_decoder_t
)(
pb_istream_t
*
stream
,
const
pb_field_t
*
field
,
void
*
dest
)
checkreturn
;
static
bool
checkreturn
buf_read
(
pb_istream_t
*
stream
,
pb_byte_t
*
buf
,
size_t
count
);
static
bool
checkreturn
pb_decode_varint32
(
pb_istream_t
*
stream
,
uint32_t
*
dest
);
static
bool
checkreturn
read_raw_value
(
pb_istream_t
*
stream
,
pb_wire_type_t
wire_type
,
pb_byte_t
*
buf
,
size_t
*
size
);
static
bool
checkreturn
decode_static_field
(
pb_istream_t
*
stream
,
pb_wire_type_t
wire_type
,
pb_field_iter_t
*
iter
);
static
bool
checkreturn
decode_callback_field
(
pb_istream_t
*
stream
,
pb_wire_type_t
wire_type
,
pb_field_iter_t
*
iter
);
...
...
@@ -170,7 +169,7 @@ pb_istream_t pb_istream_from_buffer(const pb_byte_t *buf, size_t bufsize)
* Helper functions *
********************/
static
bool
checkreturn
pb_decode_varint32
(
pb_istream_t
*
stream
,
uint32_t
*
dest
)
bool
checkreturn
pb_decode_varint32
(
pb_istream_t
*
stream
,
uint32_t
*
dest
)
{
pb_byte_t
byte
;
uint32_t
result
;
...
...
This diff is collapsed.
Click to expand it.
pb_decode.h
+
4
−
0
View file @
1e4f46c9
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment