HTMLify
Dashboard
Temp Share
Shortlinks
Frames
API
Dashboard
Temp Share
Shortlinks
Frames
API
abh - HTMLify profile
files of
/abh/learning/c/BPPL/Phase-2/state_machine/
turnstile.c
/abh/learning/c/BPPL/Phase-2/state_machine/turnstile.c
100 Views
0 Comments
#include <stdio.h>
#include <stdlib.h>
struct StateMachine {
int state;
};
struct StateMachine New_machine() {