16#ifndef INFINITE_STATE_H
17#define INFINITE_STATE_H
struct infinite_state ** infinite_state_topology(struct infinite_state *state, int depth, struct infinite_state **topology)
Get the topology of the infinite state machine.
Represents an infinite state machine. This structure holds the current state hierarchy and allows for...
The state structure for the infinite state. This structure represents a state in the infinite state m...
struct infinite_state * super
The parent state of this state.
void(* exit)(struct infinite_state *state, struct infinite_state_machine *machine)
The exit action for this state.
void(* enter)(struct infinite_state *state, struct infinite_state_machine *machine)
The enter action for this state.