refactor: remove old code comment

This commit is contained in:
Jozef Steinhübl 2024-07-21 22:23:06 +02:00
parent 39714f1f3f
commit 4b5c9e3aca
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F

View file

@ -22,26 +22,5 @@ int main(int argc, char **argv) {
cli_handle(argc, argv);
/*int opt;
opterr = 0;
while ((opt = getopt(argc, argv, "hv")) != -1) {
switch (opt) {
case 'h': {
print_help();
break;
}
case 'v': {
print_version();
break;
}
default: {
printf("unknown option -%c\n", (char)optopt);
return 1;
}
}
}
argc -= optind;
argv += optind;
*/
return 0;
}