Skip to content

Commit 5cc805b

Browse files
authored
update tombstone
1 parent 5f4162b commit 5cc805b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Chapter20/example_getopt_long.c

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
// example_getopt_long.c
22
// Chapter 20
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to
66
// * retrieve arguments entered on the command line with the C Standard
77
// Library routine getopts_long().
88
//
9-
// compile with: cc example_getopt_long.c -o example_getopt_long -Wall -Werror -std=c11
9+
// compile with:
10+
//
11+
// cc example_getopt_long.c -o example_getopt_long -Wall -Werror -std=c11
1012
//
1113
// sample inputs;
1214
//
@@ -58,4 +60,6 @@ int main(int argc, char *argv[]) {
5860
printf( "%s ", argv[ optind++ ] );
5961
printf( "\n" );
6062
}
61-
}
63+
}
64+
65+
// eof

0 commit comments

Comments
 (0)