summaryrefslogtreecommitdiff
path: root/upb/decode.h
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2017-07-19 01:08:54 +0200
committerGitHub <noreply@github.com>2017-07-19 01:08:54 +0200
commitae30b4a816a57a8101ce187245edc3050d515c06 (patch)
treef90b48f78f28071a6514a8f766bb6570ae35f5f1 /upb/decode.h
parentd5167fff744167eca45df65b5b935525778e2886 (diff)
parent72c333eb037da6fe63358efe9c6dc29547b0ab49 (diff)
Merge pull request #90 from haberman/gencode3
Added new encoder/decoder that operates on upb_msglayout.
Diffstat (limited to 'upb/decode.h')
-rw-r--r--upb/decode.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/upb/decode.h b/upb/decode.h
new file mode 100644
index 0000000..2a9e39e
--- /dev/null
+++ b/upb/decode.h
@@ -0,0 +1,17 @@
+/*
+** upb_decode: parsing into a upb_msg using a upb_msglayout.
+*/
+
+#ifndef UPB_DECODE_H_
+#define UPB_DECODE_H_
+
+#include "upb/msg.h"
+
+UPB_BEGIN_EXTERN_C
+
+bool upb_decode(upb_stringview buf, void *msg,
+ const upb_msglayout_msginit_v1 *l, upb_env *env);
+
+UPB_END_EXTERN_C
+
+#endif /* UPB_DECODE_H_ */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback