fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
11 lines
475 B
Text
11 lines
475 B
Text
This program generate a C function that uses getopt_long function to parse
|
|
the command line options, validate them and fill a struct.
|
|
|
|
Thus your program can now handle options such as:
|
|
|
|
myprog --input foo.c -o foo.o --no-tabs -i 100 *.class
|
|
|
|
And both long options (those that start with --) and short options (start
|
|
with - and consist of only one character) can be handled. For standards
|
|
about short and long options you may want to take a look at the GNU Coding
|
|
Standards.
|