2021-01-18 18:25:47 -06:00
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
2021-01-19 16:36:10 -06:00
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <stdlib.h>
|
2021-01-18 18:25:47 -06:00
|
|
|
|
|
|
|
namespace Util {
|
2021-01-19 16:36:10 -06:00
|
|
|
void Die(const char *msg);
|
|
|
|
void Die(const char * msg, const char * more);
|
|
|
|
void Die(std::string msg);
|
2021-01-18 18:25:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* UTIL_H */
|