1 //     __ _____ _____ _____
2 //  __|  |   __|     |   | |  JSON for Modern C++ (supporting code)
3 // |  |  |__   |  |  | | | |  version 3.11.2
4 // |_____|_____|_____|_|___|  https://github.com/nlohmann/json
5 //
6 // SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
7 // SPDX-License-Identifier: MIT
8 
9 #pragma once
10 
11 #include <cstddef>
12 
13 std::size_t json_sizeof_diag_on();
14 std::size_t json_sizeof_diag_on_explicit();
15 
16 std::size_t json_sizeof_diag_off();
17 std::size_t json_sizeof_diag_off_explicit();
18 
19 void json_at_diag_on();
20 void json_at_diag_off();
21