summaryrefslogtreecommitdiff
path: root/py/binary.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-10 22:19:32 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-11 03:58:49 +0300
commit6582d64d01c448be4f575f964c549e1ebffe0db0 (patch)
tree6846b2fc507b55be40bd3f7b82d5a55d905ed0bc /py/binary.h
parent2b9419b5bfda98d2cd291a81c1fa79a2f94e1089 (diff)
modstruct: Refactor to support both LE and BE packed structs.
Diffstat (limited to 'py/binary.h')
-rw-r--r--py/binary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/binary.h b/py/binary.h
index d6bab14d0..772a1a672 100644
--- a/py/binary.h
+++ b/py/binary.h
@@ -4,5 +4,5 @@
int mp_binary_get_size(char typecode);
mp_obj_t mp_binary_get_val(char typecode, void *p, int index);
-mp_obj_t mp_binary_get_val_unaligned_le(char typecode, byte **ptr);
+mp_obj_t mp_binary_get_val_unaligned(char typecode, byte **ptr);
void mp_binary_set_val(char typecode, void *p, int index, mp_obj_t val_in);