common.c 239 B

1234567891011121314
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdbool.h>
  4. #include <unistd.h>
  5. #include <time.h>
  6. #include "common.h"
  7. void timestamp_get(char *timestamp)
  8. {
  9. time_t t;
  10. t = time(NULL);
  11. sprintf(timestamp,"%lld",((long long)t)*1000);
  12. }