I am learning to use finite-state machines for some tasks but I am having problems navigating my state table and executing the functions to make it a useful system.
Consider my state machine:

Explanation:
* = Print char to stdout
N = '\n'
S = ' '
A = aA-zZ
The code I started with from Automata-based programming on Wikipedia works for such a simple machine, but I want to modify it so that I can have a more robust state transition table and call functions based off those states.
I've posted working basic code at Pastebin, along with the transtion table style I want to use.
I have not used pointers to functions before so I am not sure how to write the transition functions based off the data received by process_event. Eventually I would like to have a template that allows me to have state in/out & transition in/out functions so I can write complex user menus and even programming algorithms much more efficiently.