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
@ustad-nordin
ustad-nordin / fsm.c
Created March 24, 2024 13:54 — 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>