This will the current char, and move the ptr ahead by one.
| 741 | |
| 742 | // This will the current char, and move the ptr ahead by one. |
| 743 | inline char parseNextOpCode(char **ptr) |
| 744 | { |
| 745 | return ((*ptr)++)[0]; |
| 746 | } |
| 747 | |
| 748 | // This just test for end of string. |
| 749 | inline bool moreCigarOps(char *ptr) |