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.
16 lines
235 B
16 lines
235 B
14 years ago
|
"""
|
||
|
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"),
|
||
|
}
|
||
|
|