Registry / serialization / yyjson

yyjson

JSON →
library0.12.0vcpkgunverified

A high performance JSON library written in ANSI C

vcpkg install yyjson
INSTALL
IMPORT
SIG · YYJSON
Y
yyjson
serializationcppv0.12.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

yyjson.h
#include <yyjson.h>

Parse a JSON string and access a value

#include <yyjson.h> #include <stdio.h> int main() { const char *json = "{\"key\":\"value\"}"; yyjson_doc *doc = yyjson_read(json, strlen(json), 0); yyjson_val *val = yyjson_doc_get_root(doc); printf("%s\n", yyjson_obj_get_str(val, "key")); yyjson_doc_free(doc); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.12.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
29 hits · last 30 days
node
24
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

yyjson — pip install yyjson · libregistry