14 lines
298 B
C++
14 lines
298 B
C++
#ifndef FORMAT_HPP
|
|
#define FORMAT_HPP
|
|
|
|
#include <ztd/filedat.hpp>
|
|
|
|
ztd::chunkdat mimtochk(std::string mim);
|
|
|
|
std::string chktomim(ztd::chunkdat const& chk, std::string const& aligner);
|
|
|
|
std::string file_strimport(const std::string& path);
|
|
|
|
bool is_mim(const std::string& str);
|
|
|
|
#endif //FORMAT_HPP
|