summaryrefslogtreecommitdiffstats
path: root/src/log.h
blob: 0677d02eca291b8a5ac689033c0af45707db7307 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <stdarg.h>
#include <stdio.h>

void log_init(void);
void log_deinit(void);

void log_info(const char *fmtstr, ...);
void log_infov(const char *fmtstr, va_list ap);