Skip to content

Instantly share code, notes, and snippets.

@Nolski
Last active August 29, 2015 14:07
Show Gist options
  • Save Nolski/ec79b681d97cf4c7a96b to your computer and use it in GitHub Desktop.
Save Nolski/ec79b681d97cf4c7a96b to your computer and use it in GitHub Desktop.
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