joke-weather-app/error.cpp
Keyemail a2216dbcdc yes
2023-07-14 02:06:16 -07:00

17 lines
267 B
C++
Executable file

#include <iostream>
#include <cstdlib>
#include <string>
#include <unistd.h>
#include "error.h"
using namespace std;
void error(string msg) {
cerr << msg << endl;
}
void stop(string msg) {
cerr << msg << endl;
usleep(3000000);
exit(EXIT_FAILURE);
}