#include "lib/strf.h"
#define int_offset 48
// 0:48 - 9:57
char* int_to_str(int i) {
char* strbuf;
double num = (double)i;
}