blob: 9ae9f4f1ad00d20fe33b835b7bb22802fe8c9f47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef SIMDUTF_H
#define SIMDUTF_H
#include <cstring>
#include "simdutf/compiler_check.h"
#include "simdutf/common_defs.h"
#include "simdutf/encoding_types.h"
#include "simdutf/error.h"
SIMDUTF_PUSH_DISABLE_WARNINGS
SIMDUTF_DISABLE_UNDESIRED_WARNINGS
// Public API
#include "simdutf/simdutf_version.h"
#include "simdutf/implementation.h"
// Implementation-internal files (must be included before the implementations
// themselves, to keep amalgamation working--otherwise, the first time a file is
// included, it might be put inside the #ifdef
// SIMDUTF_IMPLEMENTATION_ARM64/FALLBACK/etc., which means the other
// implementations can't compile unless that implementation is turned on).
#include "simdutf/internal/isadetection.h"
SIMDUTF_POP_DISABLE_WARNINGS
#endif // SIMDUTF_H
|