C/C++
lite_c.asc
Associated article: Lightweight Tasks in C
Tags: C/C++ Embedded Systems
_LIGHTWEIGHT TASKS IN C_ by Jonathan Finger Listing One /* Lightweight Multitasker in C -- by Jonathan Finger, 1995 (reformatted) */ #include <setjmp.h> #include <conio.h> #include <stdio.h> #include <time.h> #include <...


