Initial commit

This commit is contained in:
Stefan Stefanov 2023-10-20 17:14:46 +03:00 committed by GitHub
commit fce29361f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 59905 additions and 0 deletions

12
include/utils/utility.hpp Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include <string>
#include <iostream>
#include <fstream>
#include <ctime>
#include <sys/types.h>
#include <sys/stat.h>
#include <cerrno>
using namespace std;
bool ReadFile(std::string file, std::string& fileContents, bool addLineTerminator = false);
long GetFileModTime(std::string file);