#include <stdio.h>
int main(void) {
workFunc();
return 0;
}
I have a sample code as above, but the function being called in 'main' is in another header file 'header.h'. So after the transformation, the code must look like
#include <stdio.h>
#include "header.h"
int main(void) {
workFunc();
return 0;
}
Please help. I am using clang, c++ coding and the transformation code available in this link