Browse Source
Some rodata items can go in iram/irom segment, but not others. With this patch ESP now has 24256 bytes of heap ram. It passes 228 out of 248 tests from tests/basics directory.pull/990/head
Damien George
10 years ago
5 changed files with 81 additions and 39 deletions
@ -0,0 +1,29 @@ |
|||
#include <stdlib.h> |
|||
|
|||
// assumes endptr != NULL
|
|||
// doesn't check for sign
|
|||
// doesn't check for base-prefix
|
|||
long long int strtoll(const char *nptr, char **endptr, int base) { |
|||
long long val = 0; |
|||
|
|||
for (; *nptr; nptr++) { |
|||
int v = *nptr; |
|||
if ('0' <= v && v <= '9') { |
|||
v -= '0'; |
|||
} else if ('A' <= v && v <= 'Z') { |
|||
v -= 'A' - 10; |
|||
} else if ('a' <= v && v <= 'z') { |
|||
v -= 'a' - 10; |
|||
} else { |
|||
break; |
|||
} |
|||
if (v >= base) { |
|||
break; |
|||
} |
|||
val = val * base + v; |
|||
} |
|||
|
|||
*endptr = (char*)nptr; |
|||
|
|||
return val; |
|||
} |
Loading…
Reference in new issue