wordplay.h 237 B

12345678910
  1. #ifndef WORDPLAY_H
  2. #define WORDPLAY_H
  3. #include <string>
  4. void harry_idle_event(int fd);
  5. void init_harry();
  6. /* int init_regex(void); */
  7. /* int mangle(int fd, const char *buffer, int len); */
  8. int mangle(int fd, std::string &buffer);
  9. #endif