rex/src/loaders/helpers.cpp

11 lines
174 B
C++
Raw Normal View History

2017-04-22 12:07:11 +00:00
//
// Created by phanes on 4/22/17.
//
#include "helpers.h"
bool exists(const std::string& name)
{
struct stat buffer;
return (stat (name.c_str(), &buffer) == 0);
}