aboutsummaryrefslogtreecommitdiff
path: root/teensy/teensy_log.c
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-10 00:28:14 -0400
committeriamcheeseman <[email protected]>2026-05-10 00:28:14 -0400
commit576bd27e11ec70bdbd1b9a644d2e227b57586337 (patch)
tree2dc41e3f88bb95568f73ee372fc35512afcbcf9b /teensy/teensy_log.c
parent9ed5698b3c74c7ce1784d3bebe2aa73d5a0c319d (diff)
i ain't splitting alla this up
Diffstat (limited to 'teensy/teensy_log.c')
-rw-r--r--teensy/teensy_log.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/teensy/teensy_log.c b/teensy/teensy_log.c
new file mode 100644
index 0000000..26672a4
--- /dev/null
+++ b/teensy/teensy_log.c
@@ -0,0 +1,33 @@
+#include "teensy_log.h"
+
+#include <stdarg.h>
+
+#include "teensy_common.h"
+
+void ty_log_msg(
+ FILE *file,
+ const char *src_name,
+ int src_line,
+ const char *type,
+ const char *fmt,
+ ...
+)
+{
+ fprintf(file, "[%s] (%s:%d) ", type, src_name, src_line);
+
+ va_list args;
+ va_start(args, fmt);
+ vfprintf(file, fmt, args);
+ va_end(args);
+
+ putc('\n', file);
+}
+
+void _ty_log_plain(FILE *file, const char *fmt, ...)
+{
+ va_list args;
+ va_start(args, fmt);
+ vfprintf(file, fmt, args);
+ va_end(args);
+ putc('\n', file);
+}