kwh-cost/src/main.h

19 lines
495 B
C
Raw Normal View History

2021-12-23 23:59:00 +04:00
#ifndef _MAIN_H_
#define _MAIN_H_
#define VERSION "1.0.0"
typedef long double price_t;
typedef long double wattage_t;
typedef unsigned long interval_t;
int parse_arguments(const int argc, const char *const *const argv, price_t *const price, wattage_t *const wattage, interval_t *const interval);
2021-12-23 23:59:00 +04:00
inline interval_t interval_to_seconds(const char * const interval);
inline price_t to_wattspersecond(const price_t price);
2021-12-23 23:59:00 +04:00
inline void print_version();
inline void print_usage();
2021-12-23 23:59:00 +04:00
#endif