repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update.
[glibc.git]
/
manual
/
examples
/
argp-ex1.c
blob
c87ebbb53236a4a38e6155f2497ebdacb0c72abe
1
/* Argp example #1 -- a minimal program using argp */
2
3
#include <argp.h>
4
5
int
main
(
int
argc
,
char
**
argv
)
6
{
7
argp_parse
(
0
,
argc
,
argv
,
0
,
0
,
0
);
8
exit
(
0
);
9
}