game/main.c
2025-12-02 21:30:20 +03:00

27 lines
490 B
C

#include "axl.h"
int _start(void)
{
axl_init();
axl_puts("Potato activated");
axl_puts("Quack quack motherducker");
axl_puts("Meowdy partner");
axl_puts("I am a meat popsicle");
axl_puts("My spoon is too big");
axl_puts("Blin!");
void* fds = axl_malloc(83);
int* f = axl_malloc(sizeof(int));
*f = 4;
*(int*)(fds) = 4;
(void)axl_memcmp(f, fds, 4);
axl_free(fds);
axl_free(f);
(void)fds;
(void)f;
return 0;
}