Skip to content

Instantly share code, notes, and snippets.

@flit
Last active May 8, 2020 17:38
Show Gist options
  • Save flit/609b8bd275d40f4347d664528f2566aa to your computer and use it in GitHub Desktop.
Save flit/609b8bd275d40f4347d664528f2566aa to your computer and use it in GitHub Desktop.
Get the current time in microseconds in C.
#include <sys/time.h>
/**
* Returns the current time in microseconds.
*/
long get_microseconds(){
struct timeval currentTime;
gettimeofday(&currentTime, NULL);
return currentTime.tv_sec * (int)1e6 + currentTime.tv_usec;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment