| 687 | { memset(b, 0, sizeof(pb_Buffer)); } |
| 688 | |
| 689 | PB_API void pb_resetbuffer(pb_Buffer *b) |
| 690 | { if (pb_onheap(b)) free(b->u.h.buff); pb_initbuffer(b); } |
| 691 | |
| 692 | static int pb_write32(char *buff, uint32_t n) { |
| 693 | int p, c = 0; |
no test coverage detected