polymurph / tinyFSM

lightweight finite state machine
MIT License
1 stars 0 forks source link

Make it usable for C++ #5

Closed polymurph closed 3 months ago

polymurph commented 3 months ago

Add the following to the Header inside the header guarded area.

#ifdef __cplusplus
extern "C" {
#endif

// header content

#ifdef __cplusplus
}
#endif