functions.hpp 607 B

1234567891011121314151617181920
  1. #ifndef FUNCTIONS_H
  2. #define FUNCTIONS_H
  3. #include "includes.hpp"
  4. using namespace std;
  5. string setchar (char c);
  6. string walk (int k);
  7. string change (int count);
  8. string go_to (int current_cell, int where);
  9. string mov (int whereto);
  10. string copy (int whereto, int buffer);
  11. string copyto (int current_cell, int whereto, int buffer);
  12. string print (int lenght);
  13. string split (string what);
  14. string sub (int p1, int p2, int resultpos, int current_cell);
  15. string sum (int p1, int p2, int resultpos, int current_cell);
  16. #endif