forked from Green-Sky/tomato
Squashed 'external/toxcore/c-toxcore/' changes from 6d634674a9..73d9b845a3
73d9b845a3 cleanup: Remove old type-ordered event getters. b0840cc02d feat: add ngc events 7df9a51349 refactor: Make event dispatch ordered by receive time. bcb6592af5 test: Add C++ classes wrapping system interfaces. 4cea4f9ca4 fix: Make all the fuzzers work again, and add a test for protodump. c4e209ea1d refactor: Factor out malloc+memcpy into memdup. 87bcc4322d fix: Remove fatal error for non-erroneous case REVERT: 6d634674a9 cleanup: Remove old type-ordered event getters. REVERT: d1d48d1dfc feat: add ngc events REVERT: 994ffecc6b refactor: Make event dispatch ordered by receive time. git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 73d9b845a310c3f56d2d6d77ed56b93d84256d6e
This commit is contained in:
@ -41,6 +41,13 @@ non_null() int create_recursive_mutex(pthread_mutex_t *mutex);
|
||||
*/
|
||||
non_null() bool memeq(const uint8_t *a, size_t a_size, const uint8_t *b, size_t b_size);
|
||||
|
||||
/**
|
||||
* @brief Copies a byte array of a given size into a newly allocated one.
|
||||
*
|
||||
* @return nullptr on allocation failure or if the input data was nullptr or data_size was 0.
|
||||
*/
|
||||
nullable(1) uint8_t *memdup(const uint8_t *data, size_t data_size);
|
||||
|
||||
// Safe min/max functions with specific types. This forces the conversion to the
|
||||
// desired type before the comparison expression, giving the choice of
|
||||
// conversion to the caller. Use these instead of inline comparisons or MIN/MAX
|
||||
|
Reference in New Issue
Block a user