/* * Copyright (c) 2020, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include __BEGIN_DECLS #define bswap_16(x) (__builtin_bswap16(x)) #define bswap_32(x) (__builtin_bswap32(x)) #define bswap_64(x) (__builtin_bswap64(x)) __END_DECLS