summaryrefslogtreecommitdiff
path: root/upb/decode.h
blob: 2a9e39eb3257740f2250008bdbac2ac5d28eb844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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