1 file changed, 22 insertions(+), 1 deletion(-)
|
| 1 | 1 | | # libcutils |
| 2 | | - | Collection of some portable helper function and data structures in C89 |
| 2 | + | Collection of some portable helper function and data structures in C89. |
| 3 | + | |
| 4 | + | ### Backport |
| 5 | + | Makes some types and macros from C99 avaiable in C89. |
| 6 | + | |
| 7 | + | ### Byte-Array |
| 8 | + | Resizable array to store objects linearly in memory. |
| 9 | + | |
| 10 | + | ### Vector |
| 11 | + | Resizable array to store pointers to objects. |
| 12 | + | |
| 13 | + | ### Dyn-String |
| 14 | + | Resizable String with some QOL functions. |
| 15 | + | |
| 16 | + | ### Linked-List |
| 17 | + | Singly- and doubly-linked list with a commont interface. |
| 18 | + | |
| 19 | + | ### Extensions |
| 20 | + | Various Posix and MS functions rewritten. |
| 21 | + | |
| 22 | + | ### Misc |
| 23 | + | Some small helper functions for different tasks. |