blob: fd00892068860fa82a257c6f48cc9f2afdd6da5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef JO_LOWBAT_HPP
#define JO_LOWBAT_HPP
#include <string>
using namespace std;
int jo_notify(const string);
int jo_speak (const string);
string jo_exec (const char*);
#endif
|