Convert compressor submodule into a normal folder

This commit is contained in:
AfonsoCMSousa
2025-12-15 15:43:14 +00:00
parent 628a465964
commit 10a4c27d79
55 changed files with 6776 additions and 1 deletions
View File
+14
View File
@@ -0,0 +1,14 @@
#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