joke-weather-app/error.h

11 lines
120 B
C
Raw Permalink Normal View History

2023-07-14 09:06:16 +00:00
#ifndef _error_h
#define _error_h
#include <string>
void error(std::string msg);
void stop(std::string msg);
#endif