Collections-C
Collections-C copied to clipboard
A library of generic data structures for the C language.
Follow up of #166, software using this library would be easier to redistribute across various distros if this library is available in the distro specific package repo. For Arch specifically,...
Currently using this library in a project that I plan to distribute across multiple distributions, for ease of integrating it into distribution specific package managers it'd help if this library...
https://github.com/srdja/Collections-C/blob/5285da8dcd3dbfe32f960abc7bf287db0d2600c5/src/cc_array.c#L479 Because `ar->capacity * sizeof(void*)` can overflow. Should use `ar->mem_calloc`.
https://srdja.github.io/Collections-C/#hashtableconf field key_compare in HashTableConf : key comparator function which returns true if the keys are identical ---> should change to "key comparator function which returns 0 if the keys...