Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

common.h 282B

123456789101112
  1. #ifndef COMMON_H
  2. #define COMMON_H
  3. #define _POSIX_C_SOURCE 199309L
  4. #include <time.h>
  5. struct timespec get_time();
  6. struct timespec time_diff(struct timespec* ts1, struct timespec* ts2);
  7. struct timespec get_duration(struct timespec* ts);
  8. void print_time(struct timespec* ts);
  9. #endif