2 lines
95 B
Erlang
2 lines
95 B
Erlang
endianness() when <<1:4/native-unit:8>> =:= <<1:4/big-unit:8>> -> big;
|
|
endianness() -> little.
|