diff options
author | Mark Whitley | 2001-03-03 00:44:55 +0000 |
---|---|---|
committer | Mark Whitley | 2001-03-03 00:44:55 +0000 |
commit | 9ead68975c05100e4d1fda0b750fbc3688e68cfd (patch) | |
tree | ae3a45ace62693d2b64c9aa1e7248f710de38fb4 /docs/contributing.txt | |
parent | 323434be429554d41f3f4764c34fd85bfbeed79a (diff) | |
download | busybox-9ead68975c05100e4d1fda0b750fbc3688e68cfd.zip busybox-9ead68975c05100e4d1fda0b750fbc3688e68cfd.tar.gz |
Added some words on use of getopt in applets.
Diffstat (limited to 'docs/contributing.txt')
-rw-r--r-- | docs/contributing.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/contributing.txt b/docs/contributing.txt index 696e63c..d9a7d3d 100644 --- a/docs/contributing.txt +++ b/docs/contributing.txt @@ -197,6 +197,11 @@ Janitorial Work These are dirty jobs, but somebody's gotta do 'em. + - Converting applets to use getopt() for option processing. Type 'grep -L + getopt *.c' to get a listing of the applets that currently don't use + getopt. If a .c file processes no options, it should have a line that + reads: /* no options, no getopt */ somewhere in the file. + - Security audits: http://www.securityfocus.com/frames/?content=/forums/secprog/secure-programming.html |