CEBL  2.1
RclassLoader.cpp
Go to the documentation of this file.
1 #include "max_var.hpp"
2 #include <stdio.h>
3 #include <iostream>
4 using namespace std;
5 
6 void cppFunc()
7 {
8  cout << "I am in the c++ code\n";
9 }
10 
11 extern "C" void test()
12 {
13  printf("I am in the c code");
14  cppFunc();
15 }