add memory debug

This commit is contained in:
Steven Dan
2026-01-31 16:08:36 +08:00
parent 57f79628ba
commit 33377ff0fb
3 changed files with 6 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ static void reverse_array(char buf[], unsigned size)
}
}
static int itoa(unsigned n, char *buf, unsigned base, int fill)
int itoa(unsigned n, char *buf, unsigned base, int fill)
{
static const char digits[] = "0123456789ABCDEF";
unsigned i = 0;