projects
/
btb
/
d2x.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
moved utility to utilities to avoid conflict with c++ std lib <utility>
[btb/d2x.git]
/
misc
/
parstest.c
1
2
#include <stdio.h>
3
4
#include "parsarg.h"
5
6
7
handle_arg(char *a)
8
{
9
printf("%s\n",a);
10
}
11
12
13
main(int argc,char **argv)
14
{
15
16
parse_args(argc-1,argv+1,handle_arg,PA_EXPAND);
17
}
18
19
ΓΏ