Last active
August 29, 2015 14:07
-
-
Save Nolski/ec79b681d97cf4c7a96b 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
typedef struct Transition { | |
int state; | |
int class; | |
char operation; | |
}Transition; | |
... | |
Transition tm[MAX_STATES][N_CC]; | |
read_user_input(m); | |
... | |
void read_user_input(Transition tm[MAX_STATES][N_CC]) { | |
int state = 0; | |
char* buf [256]; | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment