1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// // Created by joe on 9/3/15. // #ifndef POMODORI_LOGGING_H #define POMODORI_LOGGING_H #include <glib.h> typedef struct tres { guint32 time; char* reason; } tres; void log(tres* res,int code); #endif //POMODORI_LOGGING_H