c-shenanigans/logger.h
BlyDoesCoding 61ce00498d first
2025-05-30 11:51:17 +02:00

9 lines
No EOL
153 B
C

#ifndef LOGER_H
#define LOGER_H
void error(const char* format, ...);
void info(const char* format, ...);
void warning(const char* format, ...);
#endif