• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <iostream>
2 #include <iomanip>
3 #include <nlohmann/json.hpp>
4 
5 using json = nlohmann::json;
6 
main()7 int main()
8 {
9     // a JSON text given as string that is not null-terminated
10     const char* ptr = "[1,2,3]another value";
11 
12     // parse and serialize JSON
13     json j_complete = json::parse(ptr, ptr + 7);
14     std::cout << std::setw(4) << j_complete << "\n\n";
15 }
16