Files
mop3/kernel/libk/endianess.h
kamkow1 ee0e56928d
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 3m5s
Build documentation / build-and-deploy (push) Successful in 3m50s
XHCI big clean up, #define necessary bits for readability, change .clang-format options
2026-03-31 22:51:51 +02:00

7 lines
150 B
C

#ifndef _KERNEL_LIBK_ENDIANESS_H
#define _KERNEL_LIBK_ENDIANESS_H
#define BE2LE16(x) (((x) << 8) | (((x) >> 8)))
#endif // _KERNEL_LIBK_ENDIANESS_H