Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What would be a good open source lightweight c library with basic utility functionality to use in an embedded system [closed]

Tags:

c

embedded

I'm thinking of something like glib, but possibly a slim version with a minimal foot print. It would need basic utilities such as linked lists, vectors and hash tables. It should also have a minimal runtime footprint.

like image 691
kvn Avatar asked Oct 16 '10 22:10

kvn


1 Answers

Not exactly a library, but a tested, optimized and documented piece of code: sys/queue.h on *BSD and Linux systems has macros for various kinds of intrusive linked lists and queues.

like image 95
Fred Foo Avatar answered Oct 04 '22 08:10

Fred Foo