![]() |
Helixis 1.0
Task Programming API
|
Helixis is a Task Programming Framework written in "pure" C which is compatible with all hardware and software architecture.
#include "hlx/core.h" int main() { hlx_get_api_entries()->malloc_entry = &malloc; hlx_get_api_entries()->free_entry = &free; if (hlx_core_init() < 1) return (-1); hlx_core_start(); hlx_core_destroy(); return (0); }