2022-09-05 20:17:25 +02:00
|
|
|
#ifndef MISC_HPP
|
|
|
|
|
#define MISC_HPP
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
void print(const std::string s);
|
2022-09-18 18:10:03 +02:00
|
|
|
std::string fileBufferToString(const std::string filePath, std::ifstream &file);
|
2022-09-05 20:17:25 +02:00
|
|
|
#endif
|