fix scan.c not to transition to INNE

This commit is contained in:
2025-10-02 10:50:16 +09:00
parent f9a5bcf4b2
commit cc3de91036

View File

@@ -110,6 +110,8 @@ TokenType getToken(void) { /* index for storing into tokenString */
save = FALSE;
else if (c == '=')
state = INASSIGN;
else if(c == '!')
state = INNE;
else if (c == '<') {
state = INLT;
} else if (c == '>') {