game/main.c

28 lines
490 B
C
Raw Normal View History

2025-11-23 18:21:50 +03:00
#include "axl.h"
2025-11-23 20:57:09 +03:00
int _start(void)
2025-11-23 18:21:50 +03:00
{
axl_init();
2025-12-02 21:30:20 +03:00
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);
2025-11-23 20:57:09 +03:00
int* f = axl_malloc(sizeof(int));
2025-11-23 18:21:50 +03:00
*f = 4;
2025-11-27 20:42:39 +03:00
*(int*)(fds) = 4;
(void)axl_memcmp(f, fds, 4);
axl_free(fds);
axl_free(f);
2025-11-23 20:57:09 +03:00
(void)fds;
2025-11-23 18:21:50 +03:00
(void)f;
return 0;
}