summaryrefslogtreecommitdiffstats
path: root/chromium/base/big_endian.h
blob: fe4ee134ee0a962da12ef1071864b75e2f6cbecd (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
// 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_