lojo_utils is a collection of utility functions and libraries written in C.
![NOTE] lojo_utils is not thread safe.
git clone https://github.com/loganjellis/lojo_utils.git
cd lojo_utils
cmake -S . -B build
cmake --build build
Using the library (in-directory, place headers in /include, .a files in /lib, and any .dll files next to any executables)
target_include_directories(app PRIVATE "path/to/include")
target_link_libraries(app PRIVATE "path/to/lib")
add_subdirectory(LOJO_UTILS)
target_link_libraries(app PRIVATE LOJO_UTILS::lojo_utils)
For an example of using the library, refer to example.c
To view the library's documentation, click here.