Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
d1de0040
Commit
d1de0040
authored
Mar 29, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getopt: use ANSI style prototypes
parent
4892f03c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
12 deletions
+4
-12
src/config/getopt.c
src/config/getopt.c
+4
-12
No files found.
src/config/getopt.c
View file @
d1de0040
...
...
@@ -83,11 +83,7 @@ static int last_nonopt;
`first_nonopt' and `last_nonopt' are relocated so that they describe
the new indices of the non-options in ARGV after they are moved. */
static
void
exchange
(
char
**
);
static
void
exchange
(
argv
)
char
**
argv
;
static
void
exchange
(
char
**
argv
)
{
int
bottom
=
first_nonopt
;
int
middle
=
last_nonopt
;
...
...
@@ -192,13 +188,9 @@ static void
It is only valid when a long-named option has been found by the most
recent call. */
int
vlc_getopt_long
(
argc
,
argv
,
optstring
,
longopts
,
longind
)
int
argc
;
char
*
const
*
argv
;
const
char
*
optstring
;
const
struct
vlc_option
*
restrict
longopts
;
int
*
longind
;
int
vlc_getopt_long
(
int
argc
,
char
*
const
*
argv
,
const
char
*
optstring
,
const
struct
vlc_option
*
restrict
longopts
,
int
*
longind
)
{
vlc_optarg
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment