Rudiments
chat.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4 chat(chat &c) {};
5 chat &operator=(chat &c) { return *this; };
6
7 private:
8 void appendAbortString(const char *string);
9 void clearAbortStrings();
10 int32_t send(const char *string,
12 void flush();
13 int32_t expect(const char *string, char **abort);
14 int32_t substituteVariables(const char **ch,
16 void charUnescape(const char *str,
17 char **newstr, bool second);
18
19 chatprivate *pvt;
Definition chat.h:11
Definition dictionary.h:12