(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #include <inttypes.h> | |
| typedef enum { | |
| UTF8_OK = 0, | |
| UTF8_ERROR = 4, | |
| } utf8_decode_state_t; | |
| typedef struct { | |
| utf8_decode_state_t state; | |
| uint32_t codepoint; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.