Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/NICUP14/MiniLang
/ ml_malloc
Function
ml_malloc
skel/include/mlalloc.c:3–6 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
#include <mlalloc.h>
2
3
void *ml_malloc(size_t size)
4
{
5
return gc_malloc(&ml_gc, size);
6
}
7
8
void *ml_calloc(size_t count, size_t size)
9
{
Callers
nothing calls this directly
Calls
1
gc_malloc
Function · 0.70
Tested by
no test coverage detected