// #ifndef TC_H // #define TC_H // #include /* Needed for the definition of va_list */ // #include /* Needed for the definition of va_list */ // /* // ** Make sure we can call this stuff from C++. // */ // #ifdef __cplusplus // extern "C" { // #endif typedef void(*f_ptr)(); int getNumber(); char* getString(); void callback(f_ptr f); // #ifdef __cplusplus // } // #endif // #endif