Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-06-29 | Include stdlib.h in utils.h | ||
2023-05-17 | Divide in two functions the clist_add | ||
In some cases, I need to retrieve the original pointer in list_item. So, the clist_add() just adds the pointer to the list, and, clist_add_s() adds a copy of that pointer to the list. | |||
2023-05-10 | Add data size when adding new items to the list | ||
When adding new data to the list, we need exactly how long is the data. So, it's programer responsibility to calculate the exact size of data to store. | |||
2023-05-10 | Ehnance building system | ||
Is the same as liblog. | |||
2023-05-10 | Change include from list.h to utils.h | ||
2023-05-10 | Rename function to get library version | ||
2023-05-10 | Remove version.h | ||
2023-05-10 | Change the name of define in utils.h | ||
2023-05-10 | Rename list.h to utils.h | ||
2023-05-10 | Change license from LGPLv3 to BSD-3 | ||
2023-03-14 | Generify the function to get the version | ||
2023-03-13 | Change data return in clist_iterator_next | ||
We want only data and not the node structure. | |||
2023-03-13 | Change the sign of clist_iterator_has_next | ||
We don't need the pointer passed as argument. | |||
2023-03-13 | Remove size_of from clist_add | ||
We don't need the size of data, just calculate it from the pointer passed by. | |||
2023-03-13 | Change the logic to add_all collection | ||
We call clist_add inside the loop instead to play with pointers 'cause the data will be copied instead of referenced. So if the programmer clear the second list, the data will be stay there. | |||
2023-03-13 | Format function signs | ||
Every function must be declared like this: <type> <sign>(<arguments>) So you can use `grep -r '^<func>'` to find the declaration. | |||
2023-03-07 | Change license from AGPL v3 to LGPL v3 | ||
2022-11-30 | Add versionv0.0.0 | ||
2022-11-30 | Rename iterator_next() to clist_iterator_next() | ||
2022-11-30 | Rename iterator_has_next() to clist_iterator_has_next() | ||
2022-11-30 | Add test folder | ||
2022-11-30 | Move list.h | ||
2022-11-30 | Move list.c | ||
2020-01-10 | refactoring code with correct naming convention | ||
2020-01-09 | testing last two methods added | ||
2020-01-09 | added List_AddAll and List_Remove | ||
2020-01-09 | added a cast in printf | ||
2020-01-09 | first version, missing some methods | ||
2020-01-08 | src | ||