From 0a0afd5d8d0dbeee69cefe7453a8f4afa9d84ac1 Mon Sep 17 00:00:00 2001
From: w568w <1278297578@qq.com>
Date: Fri, 23 Feb 2024 00:19:55 +0800
Subject: [PATCH] change JSON recommendation
---
docs/_posts/2024-02-22-list.markdown | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/_posts/2024-02-22-list.markdown b/docs/_posts/2024-02-22-list.markdown
index 04fa059..b87550c 100644
--- a/docs/_posts/2024-02-22-list.markdown
+++ b/docs/_posts/2024-02-22-list.markdown
@@ -67,7 +67,7 @@ Common data structures.
|Use Case|Recommended Tools|
|---|---|
|CSV|[**zsv**](https://github.com/liquidaty/zsv)
Fast (simd) CSV parser.|
-|JSON|[**json-c**](https://github.com/json-c/json-c)
A formal JSON parser for C, with multi-threaded support.
[**parson**](https://github.com/kgabis/parson)
Two-file, C89-compliant simple JSON parser. Suitable for embedded systems.
[**simdjson**](https://github.com/simdjson/simdjson)
Very fast JSON parser (simd), used by Node.js and a lot more. A C++-only library, but has a C wrapper at [simdjson_pas](https://github.com/pavelmash/simdjson_pas).|
+|JSON|[**cJSON**](https://github.com/DaveGamble/cJSON)
Two-file, ultralightweight JSON parser in C89. Suitable for embedded systems, not thread safe.
[**json-c**](https://github.com/json-c/json-c)
A formal JSON parser for C, with multi-threaded support.|
|INI|[**inih**](https://github.com/benhoyt/inih)
Single header INI file parser, good for embedded systems. |
|YAML|[**libyaml**](https://github.com/yaml/libyaml)
Official YAML parser, but inactive for a while.|
|TOML|[**tomlc99**](https://github.com/cktan/tomlc99)
C99-compliant TOML parser.|