mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
8 lines
167 B
C
8 lines
167 B
C
#ifndef _WLR_ENDIAN_H
|
|
#define _WLR_ENDIAN_H
|
|
|
|
// https://stackoverflow.com/a/4240257
|
|
|
|
#define little_endian() (((union { unsigned x; unsigned char c; }){1}).c)
|
|
|
|
#endif
|