mirror of
https://github.com/minetest/minetestmapper.git
synced 2025-04-03 11:30:41 +02:00
26 lines
464 B
C++
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);
|