** rotate array slice p[0]-p[e] (both inclusive) 'n' steps ** to the 'left' */
| 850 | ** to the 'left' |
| 851 | */ |
| 852 | static void rotate (Instruction *p, int e, int n) { |
| 853 | invert(p, n - 1); |
| 854 | invert(p + n, e - n); |
| 855 | invert(p, e); |
| 856 | } |
| 857 | |
| 858 | |
| 859 | #define op_step(p) ((p)->i.code == IAny ? (p)->i.aux : 1) |
no test coverage detected