diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-06-19 15:00:46 +0900 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-06-19 15:00:46 +0900 |
commit | f95e019fd4c314e9149e33fe50fe9b4dc6908aeb (patch) | |
tree | 889572f515452866877c019eecf697acece97ee6 /src | |
parent | cad449dff9c50bddcce41df04c5b3be771d28d04 (diff) |
Add usage comment
Diffstat (limited to 'src')
-rw-r--r-- | src/calculer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/calculer.c b/src/calculer.c index be11895..72134f6 100644 --- a/src/calculer.c +++ b/src/calculer.c @@ -74,9 +74,11 @@ measure_after(void *data, int correct) return bytes_written != fwrite(logbuf, 1, bytes_written, logfile); } +/* Only use in print_usage. */ #define print_opt_noarg(opt, desc) \ fprintf(stream, " -"opt"\t\t"desc"\n") +/* Only use in print_usage. */ #define print_opt_arg(opt, arg, desc) \ fprintf(stream, " -"opt" "arg"\t"desc"\n"); |