Files
stk/include/stk_log.h
T
2025-10-21 00:10:51 +02:00

17 lines
196 B
C

#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 */