#include extern void call_in(const char *); void call_out(const char *string) { printf("call_out(\"%s\");\n", string); call_in(string); }