On 2023-03-24 14:50, Bruno Haible wrote:
struct
{
size_t nbytes;
char * data;
}
One minor comment: use idx_t instead of size_t, for the usual reasons. Also it might be a bit more efficient to put the pointer first.
On 2023-03-24 14:50, Bruno Haible wrote:
struct
{
size_t nbytes;
char * data;
}
One minor comment: use idx_t instead of size_t, for the usual reasons. Also it might be a bit more efficient to put the pointer first.