mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 11:09:05 +03:00
18 lines
297 B
C
18 lines
297 B
C
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__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
|