utils.h 817 B

12345678910111213141516171819202122232425262728293031
  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 *strnstr(const char *source, int len, const char *needle);
  19. int rstrnstr(const char *buffer, int len, const char *find);
  20. int string_insert(char *buffer, int max_length, int pos, const char *insert);
  21. void pcopy(char *pstring, char *str);
  22. std::string &find_new_text(std::ifstream &infile,
  23. std::streampos &last_position);
  24. #endif