File: endian.h

package info (click to toggle)
shim 15.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,124 kB
  • sloc: ansic: 168,639; asm: 1,714; sh: 1,294; makefile: 1,151; python: 284
file content (21 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: BSD-2-Clause-Patent
/*
 * endian.h - bswap decls that can't go in compiler.h
 * Copyright Peter Jones <pjones@redhat.com>
 */
#ifdef SHIM_UNIT_TEST
#include_next <endian.h>
#endif
#ifndef SHIM_ENDIAN_H_
#define SHIM_ENDIAN_H_

#include <stdint.h>

#include "system/builtins_begin_.h"
mkbi1_(uint16_t, bswap16, uint16_t, x)
mkbi1_(uint32_t, bswap32, uint32_t, x)
mkbi1_(uint64_t, bswap64, uint64_t, x)
#include "system/builtins_end_.h"

#endif /* !SHIM_ENDIAN_H_ */
// vim:fenc=utf-8:tw=75:noet