Skip to content

Instantly share code, notes, and snippets.

View ustad-nordin's full-sized avatar

Ustad Nordin ustad-nordin

  • ROC Mondriaan
  • The Netherlands
View GitHub Profile
@ankurs
ankurs / fsm.c
Created April 4, 2010 21:15
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>