c sample help

Implementation example
#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();
  }  
}