Removed a space symbol after * symbol. Renamed price_to_wattspersecond to price_kwh_to_wattspersecond.

This commit is contained in:
Alexander Andreev 2023-09-17 22:47:17 +04:00
parent f4ce191ae7
commit 69ff91861b
Signed by: Arav
GPG Key ID: D22A817D95815393
1 changed files with 3 additions and 3 deletions

View File

@ -8,10 +8,10 @@ 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);
price_t *const price, wattage_t *const wattage, interval_t *const interval);
inline interval_t interval_to_seconds(const char * const interval);
inline price_t price_to_wattspersecond(const price_t price);
inline interval_t interval_to_seconds(const char *const interval);
inline price_t price_kwh_to_wattspersecond(const price_t price);
inline void print_version();
inline void print_usage();