mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
21 lines
602 B
C
21 lines
602 B
C
#ifndef SIMDJSON_FALLBACK_H
|
|
#define SIMDJSON_FALLBACK_H
|
|
|
|
#include "simdjson/portability.h"
|
|
|
|
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
|
|
|
#include "simdjson/fallback/implementation.h"
|
|
|
|
#include "simdjson/fallback/begin.h"
|
|
#include "simdjson/generic/dom_parser_implementation.h"
|
|
#include "simdjson/fallback/bitmanipulation.h"
|
|
#include "simdjson/generic/jsoncharutils.h"
|
|
#include "simdjson/generic/atomparsing.h"
|
|
#include "simdjson/fallback/stringparsing.h"
|
|
#include "simdjson/fallback/numberparsing.h"
|
|
#include "simdjson/fallback/end.h"
|
|
|
|
#endif // SIMDJSON_IMPLEMENTATION_FALLBACK
|
|
#endif // SIMDJSON_FALLBACK_H
|