mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-30 13:34:33 -05:00
9 lines
117 B
C++
9 lines
117 B
C++
#pragma once
|
|
#include <fstream>
|
|
|
|
namespace logger
|
|
{
|
|
void init(void);
|
|
void log(const char *format, ...);
|
|
}
|