Skip to content

Instantly share code, notes, and snippets.

@neatlife
Created May 7, 2020 03:10
Show Gist options
  • Save neatlife/8dfa720d950da206a18a268349e5054f to your computer and use it in GitHub Desktop.
Save neatlife/8dfa720d950da206a18a268349e5054f to your computer and use it in GitHub Desktop.
c get current second
static long long epochms(void)
{
struct timespec tv;
clock_gettime(CLOCK_REALTIME, &tv);
return tv.tv_sec;
}
static long long epochms(void)
{
struct timespec tv;
clock_gettime(CLOCK_REALTIME, &tv);
return tv.tv_sec * 1000ULL + tv.tv_nsec / 1000000ULL;
}
#include <time.h>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment