예제 #1
0
파일: perf1.cpp 프로젝트: moveccr/leto
int
print_result(const char *msg, Stopwatch& sw)
{
	int msec;

	msec = sw.msec();
	printf("%s %4d msec\n", msg, msec);

	return msec;
}