initial code + Makefile

This commit is contained in:
2025-10-08 19:17:18 +02:00
parent 4066f3488b
commit 079921091f
4 changed files with 93 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "stk.h"
#include <stdio.h>
int stk_init(void)
{
printf("stk initialized v%s\n", STK_VERSION_STRING);
return 0;
}
int stk_shutdown(void)
{
printf("stk shutdown\n");
return 0;
}