c sample help
#include #include extern void testControl_update(); extern void testControl_start(); extern bool testControl_is_end(); void main() { testControl_start(); while(testControl_is_end()==false) { testControl_update(); } }