Initial commit
This commit is contained in:
commit
fce29361f6
35 changed files with 59905 additions and 0 deletions
12
include/utils/utility.hpp
Normal file
12
include/utils/utility.hpp
Normal 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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue