Hi everyone, I've come across the concept of big endian and little endian when writing binary data to a file. This was in polling an LLM for some feedback on a code snippet and it highlighted this feedback quite aggressively.
As I understand both ARM and x86/64 both use little endian. Do I need to concern myself with ensuring things are explicitly handled as big or little endian, or is that too 'in the weeds'?
It seems like if I'm targeting modern systems, I should be totally fine with just not caring and letting everything 'just work' with little endian... but I'm not 100% sure.
What are your thoughts?