Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void Test (){
- decode_loop:
- for (;;) {
- switch (mode) {
- case LNUM:
- mode = DNUM;
- goto case DNUM; // fall through
- case DNUM:
- mode = BLNUM;
- goto decode_loop;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement