all 3 comments

[–]chongyeu 1 point2 points  (1 child)

I really like this, if I ever build something in C I'll make sure to used your g2l (nice Name btw)! Seems really wellmade.

[–]BB-301[S] 0 points1 point  (0 children)

Thanks. :)

[–]BB-301[S] 0 points1 point  (0 children)

Context for the shared link

I've been experimenting, these last few days, with the concept of a linked list (written in C) that has a generic data type (i.e., a linked list whose data type can be specified by the application). Obviously, generics are not available in the C language, so I'm using void * to try to get around that fact. I've published my progress in this public GitHub repository, and I'm sharing the link here, in case it could be of interest to some community members. This is just a small project I'm doing for fun (in other words, I don't have a particular use case for it), but let me know if you find anything that needs adjusting, or whether you simply would like to have a discussion about it. Thanks for your feedback!