Statemachine or Statechart implentation in C
Does anyone know the best way to implement a statechart or statemachine in C? Are there specific libraries required or should I consider just using simple statemachine tables with switch statements? Maybe statechart is overkill for my app and using...