common.h (330B)
1 #ifndef COMMON_H_ 2 #define COMMON_H_ 3 4 #include <assert.h> 5 #include <stdint.h> 6 #include <stdio.h> 7 #include <stdlib.h> 8 9 #include <math.h> 10 #include <reading.h> 11 #include <stack_u64.h> 12 13 void read_data(stack_u64 *times, stack_u64 *distances, char **lines, 14 size_t nlines); 15 uint64_t counter(uint64_t t, uint64_t d); 16 17 #endif