You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* This function serves as the default memory allocation function and accepts four arguments:
11
+
*
12
+
* - `mrb`: An instance of `mrb_state`. It's important to note that for the initial allocation (used to allocate the `mrb_state` itself), `mrb` is set to NULL.
13
+
* - `p`: The previous pointer to the memory region. For memory allocation, this parameter is NULL.
14
+
* - `size`: The new size of the memory region to be returned.
15
+
* - `ud`: User data, represented as a `void*`, which is passed to the `mrb_state`.
0 commit comments