diff --git a/challenge/challenge.c b/challenge/challenge.c index 72e2ec6..938029b 100644 --- a/challenge/challenge.c +++ b/challenge/challenge.c @@ -11,13 +11,13 @@ int main(void) { printf("Please enter Password: "); - // read in password from standard input, exit on error. + /* read in password from standard input, exit on error. */ if (getline(&input_line, &input_size, stdin) == -1) { perror("Error"); exit(EXIT_FAILURE); } - // compare password, print info, exit appropriately + /* compare password, print info, exit appropriately */ if (strcmp(input_line, password) == 0) { puts("Success!"); exit(EXIT_SUCCESS);