From 4a82af7bf7c607a67626515fb29a10b510f9d385 Mon Sep 17 00:00:00 2001 From: sumuel Date: Tue, 15 Sep 2026 19:25:57 +0000 Subject: license add --- main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 2b3f98e..154f749 100644 --- a/main.c +++ b/main.c @@ -9,7 +9,7 @@ size_t collatz(size_t long_num) { size_t printer(size_t long_num, bool verbose) { size_t steps = 0; - /* Probably not the best way to do this */ + /* perhaps there is a less ugly way? */ if (verbose) { while ( long_num > 1 ) { long_num = collatz(long_num); @@ -35,6 +35,7 @@ int print_help(char *argv[]) { int main(int argc, char *argv[]) { if ( argc < 2 || argc > 3 ) return print_help(argv); + /* quit from the start */ bool verbose = false; char *endptr; -- cgit v1.2.3