summaryrefslogtreecommitdiff
path: root/py/qstr.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-02-10 11:02:28 +0000
committerDamien George <damien.p.george@gmail.com>2015-02-10 11:02:28 +0000
commitea0461dcd390135561651036f39606d50ce12999 (patch)
treed2db3ac831ea5d7aa60011d8ac562a2fbfa3f0c3 /py/qstr.h
parent53716fcc3effbce1b7cca49d8df30ecaad8bc1dc (diff)
py: Add option to micropython.qstr_info() to dump actual qstrs.
Diffstat (limited to 'py/qstr.h')
-rw-r--r--py/qstr.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/qstr.h b/py/qstr.h
index 776c2ab8f..58823d4ec 100644
--- a/py/qstr.h
+++ b/py/qstr.h
@@ -72,5 +72,6 @@ mp_uint_t qstr_len(qstr q);
const byte* qstr_data(qstr q, mp_uint_t *len);
void qstr_pool_info(mp_uint_t *n_pool, mp_uint_t *n_qstr, mp_uint_t *n_str_data_bytes, mp_uint_t *n_total_bytes);
+void qstr_dump_data(void);
#endif // __MICROPY_INCLUDED_PY_QSTR_H__