Calculate how many hours you're working. A project in multiple languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
243 B

#ifndef PERIOD_H
#define PERIOD_H
#include "hours.h"
hours* period_worked_so_far(hours* start, hours* lunch_break, hours* lunch_return, hours* now);
hours* period_calc_time(hours* so_far, int* extra_indicator);
#endif /* ifndef PERIOD_H */