liblist icon indicating copy to clipboard operation
liblist copied to clipboard

Generic Linked list Management Library in C

Results 6 liblist issues
Sort by recently updated
recently updated
newest added

If you happen to delete the tail , the code does not update the tail pointer of the list to point to the previous element

When two lists are concatenated , the tail of the resulting list has to be updated to the tail of the second one , but it is not done .

This way it's possible to use it in embedded environment without Posix Threads support.

enhancement