douglascrockford/JSON-c
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more.
- Open with GitHub Desktop
- Download ZIP
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Files
Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
JSON in C Douglas Crockford douglas@crockford.com 2016-11-11 JSON is a light-weight, language independent, data interchange format. See http://www.JSON.org/ JSON_checker is a Pushdown Automaton that very quickly determines if a JSON text is syntactically correct. It could be used to filter inputs to a system, or to verify that the outputs of a system are syntactically correct. It could be adapted to produce a very fast JSON parser. JSON_checker is made up of these files: JSON_checker.c The JSON_checker. JSON_checker.h The JSON_checker header file. main.c A sample application. Accessories: utf8_to_utf16.c A UTF-8 to UTF-16 converter. utf8_to_utf16.h The UTF-8 to UTF-16 converter header file. utf8_decode.c A UTF-8 decoder. utf8_decode.h The UTF-8 decoder header file.