summaryrefslogtreecommitdiff
path: root/py/modstruct.c
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-02 16:04:26 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-02 16:35:56 +0300
commit62798831bea83f7c75810064115e7f3a65892ca5 (patch)
tree6dbe8f6159917ee41ec53e353b23ed4940444415 /py/modstruct.c
parentb55a59de4c988b3d783f4d6ddaa95ebcb2538c62 (diff)
modstruct: Add one more extension to typecodes - 'S', a pointer to C string.
Also, add comment with description of extension to CPython's typecodes.
Diffstat (limited to 'py/modstruct.c')
-rw-r--r--py/modstruct.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/py/modstruct.c b/py/modstruct.c
index 39571e3ef..a45181852 100644
--- a/py/modstruct.c
+++ b/py/modstruct.c
@@ -39,6 +39,22 @@
#if MICROPY_PY_STRUCT
+/*
+ This module implements most of character typecodes from CPython, with
+ some extensions:
+
+ O - (Pointer to) an arbitrary Python object. This is useful for callback
+ data, etc. Note that you must keep reference to passed object in
+ your Python application, otherwise it may be garbage-collected,
+ and then when you get back this value from callback it may be
+ invalid (and lead to crash).
+ S - Pointer to a string (returned as a Python string). Note the
+ difference from "Ns", - the latter says "in this place of structure
+ is character data of up to N bytes length", while "S" means
+ "in this place of a structure is a pointer to zero-terminated
+ character data".
+ */
+
STATIC char get_fmt_type(const char **fmt) {
char t = **fmt;
switch (t) {