summaryrefslogtreecommitdiffstatshomepage
path: root/py/qstr.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-04-04 15:53:11 +0100
committerDamien George <damien.p.george@gmail.com>2015-04-04 15:53:11 +0100
commit2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c (patch)
treef49a2102931919c96bcde3f1bfa16b0ec8b2e27d /py/qstr.h
parent7f59b4b2ca28179c72aa12f35fe59cb14017b5b0 (diff)
downloadmicropython-2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c.tar.gz
micropython-2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c.zip
py: Some trivial cosmetic changes, for code style consistency.
Diffstat (limited to 'py/qstr.h')
-rw-r--r--py/qstr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/qstr.h b/py/qstr.h
index 58823d4ec7..2e4d089c52 100644
--- a/py/qstr.h
+++ b/py/qstr.h
@@ -67,9 +67,9 @@ byte* qstr_build_start(mp_uint_t len, byte **q_ptr);
qstr qstr_build_end(byte *q_ptr);
mp_uint_t qstr_hash(qstr q);
-const char* qstr_str(qstr q);
+const char *qstr_str(qstr q);
mp_uint_t qstr_len(qstr q);
-const byte* qstr_data(qstr q, mp_uint_t *len);
+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);