Files
mop3/kernel/libk/endianess.h
kamkow1 288a4b4e83
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 35s
Build documentation / build-and-deploy (push) Successful in 27s
Implement storage device partition rescan (XDRV_PARTITION_RESCAN), Self-hosted installation WIP
2026-04-16 00:09:46 +02:00

9 lines
232 B
C

#ifndef _KERNEL_LIBK_ENDIANESS_H
#define _KERNEL_LIBK_ENDIANESS_H
#define BSWAP16(x) __builtin_bswap16 ((x))
#define BSWAP32(x) __builtin_bswap32 ((x))
#define BSWAP64(x) __builtin_bswap64 ((x))
#endif // _KERNEL_LIBK_ENDIANESS_H