couch/core/Util.h
2021-01-19 16:36:10 -06:00

15 lines
237 B
C++

#ifndef UTIL_H
#define UTIL_H
#include <iostream>
#include <string>
#include <stdlib.h>
namespace Util {
void Die(const char *msg);
void Die(const char * msg, const char * more);
void Die(std::string msg);
}
#endif /* UTIL_H */