内存管理和栈模型❌
struct memory_data
{
struct stack_data ** debug;
int debug_len;
int debug_max;
struct str_data ** stack;
int stack_len;
int stack_cap;
int stack_max;
struct str_data ** list;
int list_len;
int list_max;
int * free;
int free_len;
int free_max;
};最后更新于