The facil.io C STL aims to provide C developers with easy-to-use tools to write memory safe and performant programs.
The facil.io library is much more than a Web Application Framework and includes core tools and type templates that any C (and C++) project will find useful.
In addition to useful helpers, facil.io allows developers to use MACROS to generate code for different common types, such as Hash Maps, Arrays, Binary-Safe Strings, etc'.
In other words, some of the most common building blocks one would need in any C project are placed in this convenient header file library.
Simply copy the fio-stl.h
file to your project's folder (using a single header file). Done.
Or... copy the fio-stl
folder to your project's folder (using "fio-stl/include.h"
). Done.
Include the file as many times as required and enjoy.
To test the STL locally you need to first fork the project or download the whole project source code. Then, from the project's root folder run:
make tests/stl
The GNU make
command will compile and run any file in the tests
folder if it is explicitly listed. i.e.,
make tests/malloc # speed test facil.io's memory allocator
make tests/json # test JSON roundtrip with external JSON files
make tests/json_minify # JSON minification example
make tests/cpp # Test template compilation in a C++ file (no run)... may fail on some compilers
It is possible to use the same makefile
to compile source code and static library code. See the makefile for details.
On Windows you might want to skip the makefile (if you do not have make
and gcc
installed) and run:
cls && cl /Ox tests\stl.c /I. && stl.exe
There are a number of examples in the ./examples folder, including:
bstr
).Examples can be compiled and executed using:
make examples/<name>
For example, to compile and run the server example, use:
make examples/server
If you're submitting a PR, make sure to update the corresponding code slice (file) in the fio-stl
folder, the makefile
will re-produce the fio-stl.h
file automatically.
Note that the master branch is currently as unstable as it gets. Commits may get squashed, the branch may be overwritten (force push), etc'. I will play nicer when the code stabilizes.
Also, contributions are subject to the terms and conditions set in the facil.io contribution guide.
Logo contributed by (Area55) under a Creative Commons Attribution 4.0 International License..
Documentation is available in the (auto-generated) fio-stl.md
file.