1
0
mirror of https://github.com/luanti-org/minetestmapper.git synced 2025-10-20 20:05:30 +02:00
Files
minetestmapper/src/util.h

26 lines
464 B
C++

#pragma once
#include <string>
#include <iostream>
template<typename T>
static inline T mymax(T a, T b)
{
return (a > b) ? a : b;
}
template<typename T>
static inline T mymin(T a, T b)
{
return (a > b) ? b : a;
}
std::string read_setting(const std::string &name, std::istream &is);
std::string read_setting_default(const std::string &name, std::istream &is,
const std::string &def);
bool file_exists(const char *path);
bool dir_exists(const char *path);