1 // Copyright 2014 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef BASE_BIG_ENDIAN_H_ 6 #define BASE_BIG_ENDIAN_H_ 7 8 // TODO(danakj): Remove this header file, but it might be a pain since it's 9 // included in a lot of places, and they may depend on these includes. 10 11 #include <stddef.h> 12 #include <stdint.h> 13 #include <string.h> 14 15 #include <optional> 16 #include <string_view> 17 #include <type_traits> 18 19 #include "base/base_export.h" 20 #include "base/compiler_specific.h" 21 #include "base/containers/span.h" 22 #include "base/memory/raw_span.h" 23 24 #endif // BASE_BIG_ENDIAN_H_ 25