cpp-main / cpp-tbox

A complete Linux application software development tool library and runtime framework, aim at make C++ development easy.

Home Page:https://github.com/cpp-main/cpp-tbox

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

在 util/json.cpp 中实现分析字节码中JSON长度的函数

hevake opened this issue · comments

size_t CheckJsonLength(const char*ptr);
通过数括号的方法找出JSON的长度。

通过数 [ { " 的个数来决定;但要注意 " 的情况。

已实现