Skip to content

Commit 7a00967

Browse files
authored
update tombstone
1 parent 5cc805b commit 7a00967

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Chapter20/example_gnu_getopts_long.c

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// example_gnu_getopts_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 using the C Standard
@@ -9,7 +9,9 @@
99
// * use required arguments
1010
// * use optional arguments with default setting (can be set to something else.
1111
//
12-
// compile with: cc example_gnu_getopts_long.c -o showArgs -Wall -Werror -std=c11
12+
// compile with:
13+
//
14+
// cc example_gnu_getopts_long.c -o showArgs -Wall -Werror -std=c11
1315
//
1416
// Sample inputs:
1517
//
@@ -126,4 +128,6 @@ int main (int argc, char **argv)
126128
}
127129

128130
exit (0);
129-
}
131+
}
132+
133+
// eof

0 commit comments

Comments
 (0)