1234567891011121314151617181920212223 |
- // #ifndef TC_H
- // #define TC_H
- // #include <stdarg.h> /* Needed for the definition of va_list */
- // #include <stdio.h> /* 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
|