// Copyright 2014 The Chromium Authors | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
#ifndef BASE_BIG_ENDIAN_H_ | |
#define BASE_BIG_ENDIAN_H_ | |
// TODO(danakj): Remove this header file, but it might be a pain since it's | |
// included in a lot of places, and they may depend on these includes. | |
#include <stddef.h> | |
#include <stdint.h> | |
#include <string.h> | |
#include <optional> | |
#include <string_view> | |
#include <type_traits> | |
#include "base/base_export.h" | |
#include "base/compiler_specific.h" | |
#include "base/containers/span.h" | |
#include "base/memory/raw_span.h" | |
#endif // BASE_BIG_ENDIAN_H_ |