From 24cf9308dee984d49357a949c96d6fb5a1a38bd4 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Tue, 18 Apr 2017 17:58:36 +0200 Subject: [PATCH] README: Caveat about zero terminated strings --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index ca9d495..aa02e2b 100644 --- a/README.md +++ b/README.md @@ -375,6 +375,10 @@ which are more complex than I'd care to try and stash into a `const char array[] ### Caveats +#### Zero Character + +cJSON doesn't support strings that contain the zero character `'\0'` or `\u0000`. This is impossible with the current API because strings are zero terminated. + #### Character Encoding cJSON only supports UTF-8 encoded input and will always produce UTF-8 as output (If the input contained invalid UTF-8, it will most likely propagate it through to the output, thereby making the output non-valid UTF-8).