From cfa5c344cd05c5a9ef23a9816bcd27010d648e58 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Fri, 7 Oct 2022 03:51:52 +0400 Subject: [PATCH] Added year 2022 to copyright. Changed usage a little. --- src/main.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/main.c b/src/main.c index f0a1b82..3d0ed09 100644 --- a/src/main.c +++ b/src/main.c @@ -71,20 +71,21 @@ inline price_t price_to_wattspersecond(const price_t price) { inline void print_version() { puts("kwh-cost Ver. " VERSION "\n" - "Copyright (C) 2021 Alexander \"Arav\" Andreev . All rights reserved.\n" + "Copyright (C) 2021,2022 Alexander \"Arav\" Andreev . All rights reserved.\n" "You can see a license for this program in /usr/share/licenses/kwh-cost/LICENSE."); } inline void print_usage() { puts("Usage: kwh-cost [OPTIONS] price wattage interval [interval ...]\n" "Options:\n" - " --help, -h Display this usage information.\n" - " --version, -v Display program version.\n" + " --help, -h display this usage information.\n" + " --version, -v display program version.\n" "Arguments:\n" - " price Price per kWh.\n" - " wattage Specify power usage in Watts.\n" - " interval Time interval in seconds total cost to be calculated for.\n" - " You may specify other time units such as:\n" - " m'inute, h'our, d'ay. Example: 5d 3h.\n" - " All given intervals will be summed up."); + " price price per kWh.\n" + " wattage power usage in Watts.\n" + " interval time interval in seconds during which\n" + " this much power to be constantly used.\n" + " You may specify other time units such as:\n" + " m'inute, h'our, d'ay. Example: 5d 3h.\n" + " All given intervals will be summed up."); }