summaryrefslogtreecommitdiffstatshomepage
path: root/py/misc.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-15 22:58:39 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-15 22:58:39 +0000
commit5573f9f150d513ed3f996722e2b57b58cfb24f3b (patch)
tree44a46d84515c9c8943ab20aa89fce0acce0fa5a5 /py/misc.h
parent4899ff9470734f0593bbe1f5272bc3d23facf7f7 (diff)
parent3e4ed25138b7ffc295843dfc11e44bccfb22ab9c (diff)
downloadmicropython-5573f9f150d513ed3f996722e2b57b58cfb24f3b.tar.gz
micropython-5573f9f150d513ed3f996722e2b57b58cfb24f3b.zip
Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2int
Conflicts: py/objint.c unix-cpy/Makefile unix/Makefile
Diffstat (limited to 'py/misc.h')
-rw-r--r--py/misc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/py/misc.h b/py/misc.h
index e985bc5253..5b012d03dc 100644
--- a/py/misc.h
+++ b/py/misc.h
@@ -50,6 +50,8 @@ bool unichar_isdigit(unichar c);
#define streq(s1, s2) (strcmp((s1), (s2)) == 0)
*/
+long strtonum(const char *restrict s, int base);
+
/** variable string *********************************************/
typedef struct _vstr_t {