diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-22 18:12:43 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-22 18:12:43 +0000 |
commit | 20773971186151b53426bd607908546598036a16 (patch) | |
tree | c74ee3ac2f07061a820355bac0bea075e0177fa8 /py/parsenum.h | |
parent | 2613ffde431594f3fe0562042c32105623fbe4dc (diff) | |
download | micropython-20773971186151b53426bd607908546598036a16.tar.gz micropython-20773971186151b53426bd607908546598036a16.zip |
py: Put number parsing code together in parsenum.c.
Diffstat (limited to 'py/parsenum.h')
-rw-r--r-- | py/parsenum.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/parsenum.h b/py/parsenum.h new file mode 100644 index 0000000000..5a2e42da50 --- /dev/null +++ b/py/parsenum.h @@ -0,0 +1,2 @@ +mp_obj_t mp_parse_num_integer(const char *restrict str, uint len, int base); +mp_obj_t mp_parse_num_decimal(const char *str, uint len); |