initial add

This commit is contained in:
2025-12-11 10:37:41 -06:00
commit 37ffac585f
18 changed files with 13695 additions and 0 deletions

15
bmp.c Normal file
View File

@@ -0,0 +1,15 @@
#include "cell.h"
#include <string.h>
#include <stdlib.h>
#include "stb_image_common.h"
IMAGE_DECODER(bmp)
IMAGE_ENCODER(bmp)
static const JSCFunctionListEntry js_bmp_funcs[] = {
MIST_FUNC_DEF(bmp, decode, 1),
MIST_FUNC_DEF(bmp, encode, 1)
};
CELL_USE_FUNCS(js_bmp_funcs)