diff options
author | Mark Whitley <markw@lineo.com> | 2001-03-03 00:44:55 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-03-03 00:44:55 +0000 |
commit | 9ead68975c05100e4d1fda0b750fbc3688e68cfd (patch) | |
tree | ae3a45ace62693d2b64c9aa1e7248f710de38fb4 /docs/contributing.txt | |
parent | 323434be429554d41f3f4764c34fd85bfbeed79a (diff) | |
download | busybox-w32-9ead68975c05100e4d1fda0b750fbc3688e68cfd.tar.gz busybox-w32-9ead68975c05100e4d1fda0b750fbc3688e68cfd.tar.bz2 busybox-w32-9ead68975c05100e4d1fda0b750fbc3688e68cfd.zip |
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 696e63c2c..d9a7d3d00 100644 --- a/docs/contributing.txt +++ b/docs/contributing.txt | |||
@@ -197,6 +197,11 @@ Janitorial Work | |||
197 | 197 | ||
198 | These are dirty jobs, but somebody's gotta do 'em. | 198 | These are dirty jobs, but somebody's gotta do 'em. |
199 | 199 | ||
200 | - Converting applets to use getopt() for option processing. Type 'grep -L | ||
201 | getopt *.c' to get a listing of the applets that currently don't use | ||
202 | getopt. If a .c file processes no options, it should have a line that | ||
203 | reads: /* no options, no getopt */ somewhere in the file. | ||
204 | |||
200 | - Security audits: | 205 | - Security audits: |
201 | http://www.securityfocus.com/frames/?content=/forums/secprog/secure-programming.html | 206 | http://www.securityfocus.com/frames/?content=/forums/secprog/secure-programming.html |
202 | 207 | ||