You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently we are using malloc & printf all over the place,
ignoring platform specific implementation.
I would like to replace these calls so users can provide their own allocators and logging functions
The text was updated successfully, but these errors were encountered:
Note that protobuf-c.c also relies on malloc. protobuf_c__allocator can be used to change the alloc and free functions. Can be a good idea to copy the way protobuf-c.c handles allocation.
currently we are using
malloc
&printf
all over the place,ignoring platform specific implementation.
I would like to replace these calls so users can provide their own allocators and logging functions
The text was updated successfully, but these errors were encountered: