2025-12-15 15:43:14 +00:00

15 lines
247 B
C++

#ifndef PRINT_HPP
#define PRINT_HPP
#include <stdio.h>
#include <stdarg.h>
#include <cstdarg>
class Logger {
public:
static void log(const char* format, ...);
static void err(const char* format, ...);
};
#endif // PRINT_HPP