-
-
Save zid/e82ad9f32f3ced93b0703ff812cd6ec3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c = get(); | |
if(c != '$') | |
return 1; | |
c = get(); | |
if(c != '%') | |
return 2; | |
while((c = get()) && isalnum(c)) | |
{ | |
*reg++ = c; | |
} | |
if(c != '[') | |
return 3; | |
*isalnum loop* | |
*check for =* | |
*isalnum loop* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment