2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-08 10:19:07 +00:00
metaforce/hecl/dataspec/helpers.hpp
2015-05-23 11:59:40 -10:00

18 lines
370 B
C++

#ifndef HELPERS_HPP
#define HELPERS_HPP
#include <string>
namespace HECLHelpers
{
bool IsRegularFile(const std::string& path);
bool IsDirectoryFile(const std::string& path);
bool ContainsMagic(const std::string& path, const char* magicBuf,
size_t magicLen, size_t magicOff=0);
bool IsBlenderFile(const std::string& path);
}
#endif // HELPERS_HPP