medianame.h 283 B

1234567891011121314
  1. #include <sys/time.h>
  2. static inline unsigned long long time_usec(void)
  3. {
  4. struct timeval t;
  5. gettimeofday(&t, NULL);
  6. return t.tv_sec * 1000000 + t.tv_usec;
  7. }
  8. static inline void get_name(char *buf, char *dir, char *templ)
  9. {
  10. sprintf(buf, "%s/%lld.%s", dir, time_usec(), templ);
  11. }