We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f4162b commit 5cc805bCopy full SHA for 5cc805b
Chapter20/example_getopt_long.c
@@ -1,12 +1,14 @@
1
// example_getopt_long.c
2
// Chapter 20
3
-// <book title>
+// Learn C Programming
4
//
5
// Demonstrate how to
6
// * retrieve arguments entered on the command line with the C Standard
7
// Library routine getopts_long().
8
9
-// compile with: cc example_getopt_long.c -o example_getopt_long -Wall -Werror -std=c11
+// compile with:
10
+//
11
+// cc example_getopt_long.c -o example_getopt_long -Wall -Werror -std=c11
12
13
// sample inputs;
14
@@ -58,4 +60,6 @@ int main(int argc, char *argv[]) {
58
60
printf( "%s ", argv[ optind++ ] );
59
61
printf( "\n" );
62
}
-}
63
+}
64
+
65
+ // eof
0 commit comments