utils.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef UTILS_H
  2. #define UTILS_H
  3. #include <fstream>
  4. #include <string>
  5. // http://c-faq.com/lib/randrange.html
  6. int randint(int N);
  7. // http://c-faq.com/lib/randrange.html
  8. // numbers in the range [M, N] could be generated with something like
  9. int randrange(int M, int N);
  10. int random_activate(int w);
  11. /**
  12. * Display a repr of the given string.
  13. *
  14. * This converts most \n\r\v\f\t codes,
  15. * defaults to \xHH (hex value).
  16. */
  17. char *repr(const char *data);
  18. const char * logrepr(const char * input);
  19. const char *strnstr(const char *source, int len, const char *needle);
  20. int rstrnstr(const char *buffer, int len, const char *find);
  21. int string_insert(char *buffer, int max_length, int pos, const char *insert);
  22. void pcopy(char *pstring, char *str);
  23. std::string &find_new_text(std::ifstream &infile,
  24. std::streampos &last_position);
  25. int harry_level(void);
  26. #include <iconv.h>
  27. class IConv {
  28. iconv_t ic;
  29. public:
  30. IConv(const char *to, const char *from);
  31. ~IConv();
  32. int convert(char *input, char *output, size_t outbufsize);
  33. };
  34. // IConv converter("UTF-8", "CP437");
  35. #endif