Advertisement
Guest User

Untitled

a guest
May 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.42 KB | None | 0 0
  1. ////////////////////////////////////////////////////////////////////////////////
  2.  
  3. #pragma once
  4.  
  5. #include <sys/timeb.h>
  6.  
  7. ////////////////////////////////////////////////////////////////////////////////
  8.  
  9. struct timeline {
  10.     struct timeb start;
  11.     struct timeb stop;
  12.  
  13.     int ms_elapsed;
  14. };
  15.  
  16. ////////////////////////////////////////
  17.  
  18. void timeline_start(struct timeline *t);
  19. void timeline_stop(struct timeline *t);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement