include/yarp/util/yp_buffer.h in yarp-0.9.0 vs include/yarp/util/yp_buffer.h in yarp-0.10.0

- old
+ new

@@ -34,9 +34,12 @@ void yp_buffer_append_zeroes(yp_buffer_t *buffer, size_t length); // Append a string to the buffer. void yp_buffer_append_str(yp_buffer_t *buffer, const char *value, size_t length); +// Append a list of bytes to the buffer. +void yp_buffer_append_bytes(yp_buffer_t *buffer, const uint8_t *value, size_t length); + // Append a single byte to the buffer. void yp_buffer_append_u8(yp_buffer_t *buffer, uint8_t value); // Append a 32-bit unsigned integer to the buffer. void yp_buffer_append_u32(yp_buffer_t *buffer, uint32_t value);