[
Lists Home |
Date Index |
Thread Index
]
Miles Sabin wrote,
> Nb. as is traditional, this might not even compile, never mind
> execute correctly.
<sigh/>
And I forgot a bunch of top-level mismatch cases too. Add the following,
case ';':
case 'a':
case 'u':
p += 3;
break;
case 'g':
case 'l':
case 'm':
p += 2;
break;
case 't':
++p;
break;
Cheers,
Miles
|