Skip to content

Simple, high precision stopwatch for Windows written in C

License

Notifications You must be signed in to change notification settings

moritzrinow/winwatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

winwatch

Simple, high precision stopwatch for Windows written in C

WinWatch w = StartWinWatch();

for (int i = 0; i < 1000; i++) {
  void *mem = malloc(1000000);
  free(mem);
}

StopWinWatch(w);

double elapsedMs = WinWatchElapsedMilliD(w);
printf("ElapsedMs: %f\n", elapsedMs);

About

Simple, high precision stopwatch for Windows written in C

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages