Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
382 B
19 lines
382 B
7 years ago
|
/*
|
||
|
** structs.int.h: structures definitions that are internal to upb.
|
||
|
*/
|
||
|
|
||
|
#ifndef UPB_STRUCTS_H_
|
||
|
#define UPB_STRUCTS_H_
|
||
|
|
||
|
struct upb_array {
|
||
|
upb_fieldtype_t type;
|
||
|
uint8_t element_size;
|
||
|
void *data; /* Each element is element_size. */
|
||
|
size_t len; /* Measured in elements. */
|
||
|
size_t size; /* Measured in elements. */
|
||
|
upb_alloc *alloc;
|
||
|
};
|
||
|
|
||
|
#endif /* UPB_STRUCTS_H_ */
|
||
|
|