10 lines
391 B
C
10 lines
391 B
C
#include <stddef.h>
|
|
|
|
// TODO: Use zig allocators
|
|
// extern void *zig_cute_aseprite_malloc(void* ctx, size_t size);
|
|
// extern void zig_cute_aseprite_free(void* ctx, void* mem);
|
|
|
|
#define CUTE_ASEPRITE_IMPLEMENTATION
|
|
// #define CUTE_ASEPRITE_ALLOC(size, ctx) zig_cute_aseprite_malloc(ctx, size)
|
|
// #define CUTE_ASEPRITE_FREE(mem, ctx) zig_cute_aseprite_free(ctx, mem)
|
|
#include "cute_aseprite.h" |