#include
#define START 1
#define END 0
#define NOW time(NULL)
#define DEBUG_MSG(task, op) \
{ printf("Debug infor: %s %s %u", task, op==START?"started":"finised", NOW);}*/
int main()
{
DEBUG_MSG("INI", START);
return 0;
}
如果NOW不是宏的话,而是printf("%u",time(NULL)); 也能实现时间戳的功能。
阅读(1553) | 评论(0) | 转发(0) |