mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 17:00:37 +00:00
11 lines
195 B
C
11 lines
195 B
C
#include <sys/cdefs.h>
|
|
|
|
#pragma once
|
|
|
|
__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
|