byteswap.h 297 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2020, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <sys/cdefs.h>
  8. __BEGIN_DECLS
  9. #define bswap_16(x) (__builtin_bswap16(x))
  10. #define bswap_32(x) (__builtin_bswap32(x))
  11. #define bswap_64(x) (__builtin_bswap64(x))
  12. __END_DECLS