#ifndef SIMDJSON_JSONIOUTIL_H #define SIMDJSON_JSONIOUTIL_H #include #include #include #include #include #include #include "simdjson/common_defs.h" #include "simdjson/padded_string.h" namespace simdjson { #if SIMDJSON_EXCEPTIONS inline padded_string get_corpus(const std::string &filename) { return padded_string::load(filename); } #endif // SIMDJSON_EXCEPTIONS } // namespace simdjson #endif // SIMDJSON_JSONIOUTIL_H