Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
7f00ba6a
...
7f00ba6a768be4309c12c559440ad23c13f22c64
authored
2001-09-18 06:43:11 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Handle +folder.
1 parent
edd6a02d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
mh/mh_getopt.c
mh/mh_getopt.c
View file @
7f00ba6
...
...
@@ -39,6 +39,14 @@ mh_getopt (int argc, char **argv, struct mh_option *mh_opt)
if
(
mh_optind
>=
argc
||
argv
[
mh_optind
]
==
NULL
)
return
EOF
;
mh_optptr
=
argv
[
mh_optind
];
if
(
mh_optptr
[
0
]
==
'+'
)
{
mh_optarg
=
mh_optptr
+
1
;
mh_optind
++
;
return
'+'
;
}
if
(
mh_optptr
[
0
]
!=
'-'
)
return
EOF
;
...
...
Please
register
or
sign in
to post a comment