From 44d97efd54697e10551dadc5c896222c0c636936 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 17 Nov 2025 00:18:17 +0000 Subject: [PATCH] Added README --- README.org | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.org diff --git a/README.org b/README.org new file mode 100644 index 0000000..46f0ce7 --- /dev/null +++ b/README.org @@ -0,0 +1,21 @@ +#+begin_example +┌──────────────────────────────────┐ +│ _____ _____ _____ _____ _ __ │ +│ | __ \| __ \|_ _/ ____| |/ / │ +│ | |__) | |__) | | || | | ' / │ +│ | ___/| _ / | || | | < │ +│ | | | | \ \ _| || |____| . \ │ +│ |_| |_| \_\_____\_____|_|\_\ │ +└──────────────────────────────────┘ +#+end_example + +A set of STB-style header-only libraries for common data structures +and algorithms that I may require while working on a C code base. The +idea is to be as close to "plug-and-play" as possible. + +All you need to do is copy the relevant header files over to your +project, then setup the implementation code within one code unit by: +#+begin_src c +#define _IMPL +#include "./" +#+end_src