Home

Awesome

C Container

C container is a STL-like library which implements generic containers in C language. It also implements most of the algorithms in STL algorithm, which can be applied to containers. This library is intended to be helpful for embedded software development, which may still use C language nowadays.

Containers:

Container adapters:

Notes

Build from source

In root directory of source code

$ mkdir build
$ cd build
$ cmake ../
$ make

To build unit tests, it requires Google test can be found. Make sure you installed it before building. If cross-compiling for embedded device, change the toolchain used in common.cmake.

License

MIT