base: expose iron_log_args

This commit is contained in:
luboslenco
2026-04-02 16:51:42 +02:00
parent e35f733077
commit d5a0b96257
2 changed files with 6 additions and 5 deletions
-5
View File
@@ -14,11 +14,6 @@
#include <memory.h>
#include <stddef.h>
typedef enum {
IRON_LOG_LEVEL_INFO,
IRON_LOG_LEVEL_ERROR
} iron_log_level_t;
void iron_log_args(iron_log_level_t level, const char *format, va_list args) {
#ifdef IRON_ANDROID
va_list args_android_copy;
+6
View File
@@ -7,6 +7,12 @@
#include <stddef.h>
#include <stdint.h>
typedef enum {
IRON_LOG_LEVEL_INFO,
IRON_LOG_LEVEL_ERROR
} iron_log_level_t;
void iron_log_args(iron_log_level_t level, const char *format, va_list args);
void iron_log(const char *format, ...);
void iron_error(const char *format, ...);