Library similar to Boost and STL in C

2

Is there a library similar to Boost and STL of C ++ with data structures, etc. in C?     

asked by anonymous 07.11.2016 / 03:15

1 answer

2

There is nothing similar, not even something so popular. As STL is the default C ++ library has something that has the same goal, although it does not have a proper name there is a standard C library that does not compare to STL.

There are libraries with extra structures and algorithms, but nothing that is universally used. Maybe Glib is the best known.

    
17.05.2017 / 14:19