Back to home page

Enduro/X

 
 

    


0001 #ifndef CUTE_REPORTER_HEADER
0002 #define CUTE_REPORTER_HEADER
0003 
0004 #include <cgreen/reporter.h>
0005 
0006 #ifdef __cplusplus
0007 namespace cgreen {
0008     extern "C" {
0009 #endif
0010 
0011 typedef int Printer(const char *format, ...);
0012 
0013 TestReporter *create_cute_reporter(void);
0014 void set_cute_printer(TestReporter *reporter, Printer *printer);
0015 
0016 #ifdef __cplusplus
0017     }
0018 }
0019 #endif
0020 
0021 #endif