add logging

This commit is contained in:
2025-10-21 00:10:51 +02:00
parent a82fb80a99
commit 8b26742c63
3 changed files with 33 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef STK_LOG_H
#define STK_LOG_H
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
void stk_log(FILE *fp, const char *fmt, ...);
#ifdef __cplusplus
}
#endif
#endif /* STK_LOG_H */