diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-08 18:17:23 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-08 18:17:23 +0000 |
commit | 698ec21e46564ff0c2c71bf11d7eb4ef349c88d9 (patch) | |
tree | 3d0eac21ec784f970f9f5586dfbd28c66f0774e5 /py/obj.h | |
parent | 23177088d255bec6c0bf93470aeac77194aa8258 (diff) |
Make mp_obj_str_get_data return char* instead of byte*.
Can't decide which is better for string type, char or byte pointer.
Changing to char removes a few casts. Really need to do proper unicode.
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -290,7 +290,7 @@ uint mp_obj_str_get_hash(mp_obj_t self_in); uint mp_obj_str_get_len(mp_obj_t self_in); qstr mp_obj_str_get_qstr(mp_obj_t self_in); // use this if you will anyway convert the string to a qstr const char *mp_obj_str_get_str(mp_obj_t self_in); // use this only if you need the string to be null terminated -const byte *mp_obj_str_get_data(mp_obj_t self_in, uint *len); +const char *mp_obj_str_get_data(mp_obj_t self_in, uint *len); void mp_str_print_quoted(void (*print)(void *env, const char *fmt, ...), void *env, const byte *str_data, uint str_len); // bytes |