Skip to content

Instantly share code, notes, and snippets.

@jtortoise
jtortoise / fsm.c
Created February 4, 2018 06:35 — forked from ankurs/fsm.c
FSM in C
/**
* @file fsm.c
* @brief an implementation for a FSM in C, this file contains
* implementation of definations.
* License GPLv3+
* @author Ankur Shrivastava
*/
#include "fsm.h"
#include<stdlib.h>