while Loops, Conditions, and Blocks

        while ((c = getopt (argc, argv, "t:")) != -1) {
                switch (c) {
                case 't':
                        getstops(optarg);
                        break;
                case '?':
                default:
                        usage();
                        /* NOTREACHED */
                }
        }
Issues: