Skip to main content
Deno 2 is finally here 🎉️
Learn more

deno-cstdlib

clang stdlib wrapper.

import { malloc, free, mblen } from 'https://deno.land/x/cstdlib/mod.ts';

// 8 byte malloc
let ptr = malloc(8);

// free ptr;
free(ptr);