We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acb1155 commit be2a341Copy full SHA for be2a341
cores/esp32/stdlib_noniso.c
@@ -29,18 +29,6 @@
29
#include <math.h>
30
#include "stdlib_noniso.h"
31
32
-void reverse(char* begin, char* end) {
33
- char *is = begin;
34
- char *ie = end - 1;
35
- while(is < ie) {
36
- char tmp = *ie;
37
- *ie = *is;
38
- *is = tmp;
39
- ++is;
40
- --ie;
41
- }
42
-}
43
-
44
char* ltoa(long value, char* result, int base) {
45
if(base < 2 || base > 16) {
46
*result = 0;
0 commit comments