1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
base / big_endian.h [blame]
// 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_