diff options
author | justanothercatgirl <sotov@twistea.su> | 2025-03-24 08:28:49 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2025-03-24 08:28:49 +0300 |
commit | 1c857416928744d359bc3fc63cd765219bf0cb1c (patch) | |
tree | 8f57c22b115f033a4161dad247290fea16d9d75d /README.md | |
parent | 0612bfa57649c4bffea0ca6e436539d8c3193a80 (diff) |
updated readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -22,9 +22,9 @@ This is just a collection of (usually single-purpos) header files that I use ref * Summary: Code generator for embedding resources directly into an executable. * How to use: It exposes C interface, so in order to use it, you will need to have a C program that builds resources for you. It has it's own repo, but i will be adding CLI to there soon. * Examples: see [this repo](https://github.com/justanothercatgirl/embed_test.c/) -## [`json.h`](include/json.h) -* Summary: json generator and parser that supports comments. -* How to use: define `JSON_IMPLEMENTATION` macro. `CONTAINER_IMPLEMENTATION` MUST be defined as well; either somewhere earlier in the code before including `container.h` or just before `json.h`. this JSON implementation uses `array` and `hash_map`. +## [`jacson.h`](include/jacson.h) +* Summary: Spec-compliant json serializer and parser +* How to use: define `JACSON_IMPLEMENTATION` macro. `CONTAINER_IMPLEMENTATION` MUST be defined as well; either somewhere earlier in the code before including `container.h` or just before `jacson.h`. this JSON implementation uses `array` and `hash_set`. ## `build.h` nearest TODO for now. * Summary: a build system based on C. To compile something under it, you do something like `cc -o builder builder.c && ./builder`. The idea is stolen from [Tsoding](https://example.com) |