You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
235 B
15 lines
235 B
"""
|
|
Constant values about endian.
|
|
"""
|
|
|
|
from hachoir_core.i18n import _
|
|
|
|
BIG_ENDIAN = "ABCD"
|
|
LITTLE_ENDIAN = "DCBA"
|
|
NETWORK_ENDIAN = BIG_ENDIAN
|
|
|
|
endian_name = {
|
|
BIG_ENDIAN: _("Big endian"),
|
|
LITTLE_ENDIAN: _("Little endian"),
|
|
}
|
|
|
|
|