Squashed 'src/univalue/' content from commit 9ef5b78

git-subtree-dir: src/univalue
git-subtree-split: 9ef5b78c1998509b8f1ccd76f0aee15140e384be
This commit is contained in:
Jack Grigg
2017-02-10 02:18:44 +00:00
commit a4071034f6
75 changed files with 2340 additions and 0 deletions

8
test/no_nul.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "univalue.h"
int main (int argc, char *argv[])
{
char buf[] = "___[1,2,3]___";
UniValue val;
return val.read(buf + 3, 7) ? 0 : 1;
}